Microsoft.Azure.Amqp.InternalBufferManager.PooledBufferManager.BufferPool.SynchronizedBufferPool.SynchronizedBufferPool C# (CSharp) Метод

SynchronizedBufferPool() приватный Метод

private SynchronizedBufferPool ( int bufferSize, int limit ) : System
bufferSize int
limit int
Результат System
                    internal SynchronizedBufferPool(int bufferSize, int limit)
                        : base(bufferSize, limit)
                    {
                        this.innerPool = new SynchronizedPool<byte[]>(limit);
                    }
InternalBufferManager.PooledBufferManager.BufferPool.SynchronizedBufferPool