Microsoft.Azure.Amqp.AmqpConnectionBase.SendBuffers C# (CSharp) Method

SendBuffers() public method

public SendBuffers ( ByteBuffer buffers ) : void
buffers ByteBuffer
return void
        public void SendBuffers(ByteBuffer[] buffers)
        {
            int totalCount = 0;
            foreach (ByteBuffer buffer in buffers)
            {
                totalCount += buffer.Length;
            }

            this.asyncIO.WriteBuffer(buffers);
        }