Click or drag to resize

IByteBufferAccessBackingBytes Method

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.

Namespace:  MongoDB.Bson.IO
Assembly:  MongoDB.Bson (in MongoDB.Bson.dll) Version: 2.6.0+Branch.origin/v2.6.x.Sha.593796a7b35dc59243383bcc684de296a5468f2e
Syntax
ArraySegment<byte> AccessBackingBytes(
	int position
)

Parameters

position
Type: SystemInt32
The position.

Return Value

Type: ArraySegmentByte
An ArraySegment pointing directly to the backing bytes for the position.
See Also