Click or drag to resize
PackerPackRawBody Method (IEnumerableByte)
Packs specified byte sequence to current stream without any header.

Namespace: MsgPack
Assembly: MsgPack (in MsgPack.dll) Version: 0.6.0
Syntax
public Packer PackRawBody(
	IEnumerable<byte> value
)

Parameters

value
Type: System.Collections.GenericIEnumerableByte
Source byte array.

Return Value

Type: Packer
This instance.
Exceptions
ExceptionCondition
ObjectDisposedExceptionThis instance has been disposed.
Remarks
If you forget to write header first, then resulting stream will be corrupsed.
See Also