| IByteBuffer Methods | 
The IByteBuffer type exposes the following members.
 Methods
Methods| Name | Description | |
|---|---|---|
|  | AccessBackingBytes | 
            Access the backing bytes directly. The returned ArraySegment will point to the desired position and contain
            as many bytes as possible up to the next chunk boundary (if any). If the returned ArraySegment does not
            contain enough bytes for your needs you will have to call ReadBytes instead.
             | 
|  | Clear | 
            Clears the specified bytes.
             | 
|  | Dispose | Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.(Inherited from IDisposable.) | 
|  | EnsureCapacity | 
            Ensure that the buffer has a minimum capacity. Depending on the buffer allocation strategy
            calling this method may result in a higher capacity than the minimum (but never lower).
             | 
|  | GetByte | 
            Gets a byte.
             | 
|  | GetBytes | 
            Gets bytes.
             | 
|  | GetSlice | 
            Gets a slice of this buffer.
             | 
|  | MakeReadOnly | 
            Makes this buffer read only.
             | 
|  | SetByte | 
            Sets a byte.
             | 
|  | SetBytes | 
            Sets bytes.
             | 
 See Also
See Also