2 implementations of IBufferAllocator
System.Web (2)
BufferAllocator.cs (2)
213internal class SimpleBufferAllocator<T> : IBufferAllocator<T> { 302class BufferAllocatorWrapper<T> : IBufferAllocator<T> {
9 references to IBufferAllocator
System.Web (9)
BufferAllocator.cs (9)
38IBufferAllocator<char> CharBufferAllocator { get; } 39IBufferAllocator<int> IntBufferAllocator { get; } 40IBufferAllocator<IntPtr> IntPtrBufferAllocator { get; } 365private IBufferAllocator<char> _charAllocator = null; 366private IBufferAllocator<int> _intAllocator = null; 367private IBufferAllocator<IntPtr> _intPtrAllocator = null; 369public IBufferAllocator<char> CharBufferAllocator { 383public IBufferAllocator<int> IntBufferAllocator { 397public IBufferAllocator<IntPtr> IntPtrBufferAllocator {