PackerPackRawBody Method (IEnumerableByte) |
Packs specified byte sequence to current stream without any header.
Namespace: MsgPackAssembly: MsgPack (in MsgPack.dll) Version: 0.6.0
Syntax public Packer PackRawBody(
IEnumerable<byte> value
)
Public Function PackRawBody (
value As IEnumerable(Of Byte)
) As Packer
public:
Packer^ PackRawBody(
IEnumerable<unsigned char>^ value
)
member PackRawBody :
value : IEnumerable<byte> -> Packer
Parameters
- value
- Type: System.Collections.GenericIEnumerableByte
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