Amqp.ByteBuffer.ByteBuffer C# (CSharp) Method

ByteBuffer() public method

Initializes a new buffer from a byte array.
public ByteBuffer ( byte buffer, int offset, int count, int capacity ) : System
buffer byte The byte array.
offset int The start position.
count int The number of bytes.
capacity int The total size of the byte array from offset.
return System
        public ByteBuffer(byte[] buffer, int offset, int count, int capacity)
            : this(buffer, offset, count, capacity, false)
        {
        }

Same methods

ByteBuffer::ByteBuffer ( byte buffer, int offset, int count, int capacity, bool autoGrow ) : System
ByteBuffer::ByteBuffer ( int size, bool autoGrow ) : System