Microsoft.Azure.Amqp.InternalBufferManager.PooledBufferManager.BufferPool.SynchronizedBufferPool.SynchronizedBufferPool C# (CSharp) Méthode

SynchronizedBufferPool() private méthode

private SynchronizedBufferPool ( int bufferSize, int limit ) : System
bufferSize int
limit int
Résultat System
                    internal SynchronizedBufferPool(int bufferSize, int limit)
                        : base(bufferSize, limit)
                    {
                        this.innerPool = new SynchronizedPool<byte[]>(limit);
                    }
InternalBufferManager.PooledBufferManager.BufferPool.SynchronizedBufferPool