ByteArrayBuffer Constructor (Byte, Boolean) |
Namespace:
MongoDB.Bson.IO
Assembly:
MongoDB.Bson (in MongoDB.Bson.dll) Version: 2.19.1+3a2a09dd959482f665ffbb5df2557ec541597af4
Syntax public ByteArrayBuffer(
byte[] bytes,
bool isReadOnly = false
)
Public Sub New (
bytes As Byte(),
Optional isReadOnly As Boolean = false
)
new :
bytes : byte[] *
?isReadOnly : bool
(* Defaults:
let _isReadOnly = defaultArg isReadOnly false
*)
-> ByteArrayBuffer
Parameters
- bytes
- Type: SystemByte
The bytes. - isReadOnly (Optional)
- Type: SystemBoolean
Whether the buffer is read only.
See Also