17 references to BufferingParams
System.Web (17)
Hosting\IIS7WorkerRequest.cs (4)
2631
IBufferAllocator intAllocator = new IntegerArrayAllocator(
BufferingParams
.INT_BUFFER_SIZE,
BufferingParams
.MAX_FREE_OUTPUT_BUFFERS);
2632
IBufferAllocator intPtrAllocator = new IntPtrArrayAllocator(
BufferingParams
.INTPTR_BUFFER_SIZE,
BufferingParams
.MAX_FREE_OUTPUT_BUFFERS);
HttpApplication.cs (3)
330
alloc.CharBufferAllocator = new SimpleBufferAllocator<char>(
BufferingParams
.CHAR_BUFFER_SIZE);
331
alloc.IntBufferAllocator = new SimpleBufferAllocator<int>(
BufferingParams
.INT_BUFFER_SIZE);
332
alloc.IntPtrBufferAllocator = new SimpleBufferAllocator<IntPtr>(
BufferingParams
.INTPTR_BUFFER_SIZE);
HttpWriter.cs (10)
178
s_Pool = IIS.MgdGetBufferPool(
BufferingParams
.INTEGRATED_MODE_BUFFER_SIZE);
181
s_Pool = UnsafeNativeMethods.BufferPoolGetPool(
BufferingParams
.OUTPUT_BUFFER_SIZE,
182
BufferingParams
.MAX_FREE_OUTPUT_BUFFERS);
193
_size =
BufferingParams
.INTEGRATED_MODE_BUFFER_SIZE;
197
_size =
BufferingParams
.OUTPUT_BUFFER_SIZE;
956
IBufferAllocator charAllocator = new CharBufferAllocator(
BufferingParams
.CHAR_BUFFER_SIZE,
BufferingParams
.MAX_FREE_CHAR_BUFFERS);
1022
if (estByteSize <=
BufferingParams
.MAX_BYTES_TO_COPY || !_responseBufferingOn) {
1077
if (size >
BufferingParams
.MAX_RESOURCE_BYTES_TO_COPY || !_responseBufferingOn) {
1361
if (buffer.FreeBytes >
BufferingParams
.MAX_FREE_BYTES_TO_CACHE) {