MongoDB.Bson.RawBsonArray.RawBsonArray C# (CSharp) Method

RawBsonArray() public method

Initializes a new instance of the RawBsonArray class.
slice RawBsonArray cannot be used with an IByteBuffer that needs disposing.
public RawBsonArray ( IByteBuffer slice ) : System
slice IByteBuffer The slice.
return System
        public RawBsonArray(IByteBuffer slice)
        {
            if (slice == null)
            {
                throw new ArgumentNullException("slice");
            }

            _slice = slice;
        }