1 interface inheriting from IBufferAllocator
System.Web (1)
BufferAllocator.cs (1)
31internal interface IBufferAllocator<T> : IBufferAllocator {
1 implementation of IBufferAllocator
System.Web (1)
BufferAllocator.cs (1)
48internal abstract class BufferAllocator : IBufferAllocator {
9 references to IBufferAllocator
System.Web (9)
BufferAllocator.cs (6)
249object IBufferAllocator.GetBuffer() { 257void IBufferAllocator.ReuseBuffer(object buffer) { 303private IBufferAllocator _allocator; 305public BufferAllocatorWrapper(IBufferAllocator allocator) { 341object IBufferAllocator.GetBuffer() { 345void IBufferAllocator.ReuseBuffer(object buffer) {
Hosting\IIS7WorkerRequest.cs (2)
2631IBufferAllocator intAllocator = new IntegerArrayAllocator(BufferingParams.INT_BUFFER_SIZE, BufferingParams.MAX_FREE_OUTPUT_BUFFERS); 2632IBufferAllocator intPtrAllocator = new IntPtrArrayAllocator(BufferingParams.INTPTR_BUFFER_SIZE, BufferingParams.MAX_FREE_OUTPUT_BUFFERS);
HttpWriter.cs (1)
956IBufferAllocator charAllocator = new CharBufferAllocator(BufferingParams.CHAR_BUFFER_SIZE, BufferingParams.MAX_FREE_CHAR_BUFFERS);