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