PackerPackRawBody Method (Byte) |
Packs specified byte array to current stream without any header.
Namespace: MsgPackAssembly: MsgPack (in MsgPack.dll) Version: 0.6.0
Syntax public Packer PackRawBody(
byte[] value
)
Public Function PackRawBody (
value As Byte()
) As Packer
public:
Packer^ PackRawBody(
array<unsigned char>^ value
)
member PackRawBody :
value : byte[] -> Packer
Parameters
- value
- Type: SystemByte
Source byte array.
Return Value
Type:
PackerThis instance.
Exceptions Remarks
If you forget to write header first, then resulting stream will be corrupsed.
See Also