PackerWriteBytes Method (Byte, Boolean) |
Writes specified bytes to stream using implementation specific most efficient manner.
Namespace: MsgPackAssembly: MsgPack (in MsgPack.dll) Version: 0.6.0
Syntax protected virtual void WriteBytes(
byte[] value,
bool isImmutable
)
Protected Overridable Sub WriteBytes (
value As Byte(),
isImmutable As Boolean
)
protected:
virtual void WriteBytes(
array<unsigned char>^ value,
bool isImmutable
)
abstract WriteBytes :
value : byte[] *
isImmutable : bool -> unit
override WriteBytes :
value : byte[] *
isImmutable : bool -> unit
Parameters
- value
- Type: SystemByte
Bytes to be written. - isImmutable
- Type: SystemBoolean
If the value can be treat as immutable (that is, can be used safely without copying) then true.
See Also