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