Click or drag to resize
UnpackingUnpackExtendedTypeObject Method (Byte)
Unpacks the MessagePackExtendedTypeObject which represents the extended type value. from the head of specified byte array.

Namespace: MsgPack
Assembly: MsgPack (in MsgPack.dll) Version: 0.6.0
Syntax
public static UnpackingResult<MessagePackExtendedTypeObject> UnpackExtendedTypeObject(
	byte[] source
)

Parameters

source
Type: SystemByte
The byte array which contains Message Pack binary stream.

Return Value

Type: UnpackingResultMessagePackExtendedTypeObject
The UnpackingResultT of MessagePackExtendedTypeObject which contains unpacked the MessagePackExtendedTypeObject which represents the extended type value. and processed bytes count.
Exceptions
ExceptionCondition
ArgumentNullExceptionsource is null.
ArgumentExceptionsource is empty.
UnpackExceptionsource is not valid MessagePack stream.
MessageTypeException The unpacked result in the source is not compatible to MessagePackExtendedTypeObject.
MessageNotSupportedException The items count of the underlying collection body is over MaxValue.
Remarks
See Also