2 implementations of IByteBufferPool
System.Runtime.Remoting (2)
channels\core\bytebufferpool.cs (2)
28
internal class ByteBufferAllocator :
IByteBufferPool
49
internal class ByteBufferPool :
IByteBufferPool
4 references to IByteBufferPool
System.Runtime.Remoting (4)
channels\core\chunkedmemorystream.cs (2)
30
private
IByteBufferPool
_bufferPool = null; // pool of byte buffers to use
40
public ChunkedMemoryStream(
IByteBufferPool
bufferPool)
channels\core\corechannel.cs (2)
62
private static
IByteBufferPool
_bufferPool = new ByteBufferPool(10, 4096);
65
internal static
IByteBufferPool
BufferPool { get { return _bufferPool; } }