12 references to BufferType
System.Web (12)
Hosting\IIS7WorkerRequest.cs (3)
968isBufferFromUnmanagedPool ? BufferType.UnmanagedPool : BufferType.Managed)); 982BufferType.IISAllocatedRequestMemory));
Hosting\ISAPIWorkerRequest.cs (9)
390private BufferType _bufferType; // 0 managed, 1 native pool, 2 IIS allocated request memory, 3 TransmitFile 393_bufferType = BufferType.TransmitFile; 412_bufferType = BufferType.TransmitFile; 417internal MemoryBytes(IntPtr data, int size, BufferType bufferType) { 430get { return _bufferType == BufferType.UnmanagedPool; } 433internal BufferType BufferType { 442get { return _bufferType == BufferType.TransmitFile; } 1369AddBodyToCachedResponse(new MemoryBytes(data, length, isBufferFromUnmanagedPool ? BufferType.UnmanagedPool : BufferType.Managed));