Click or drag to resize
MessagePackExtendedTypeObject Constructor
Initializes a new instance of the MessagePackExtendedTypeObject struct.

Namespace: MsgPack
Assembly: MsgPack (in MsgPack.dll) Version: 0.6.0
Syntax
public MessagePackExtendedTypeObject(
	byte typeCode,
	byte[] body
)

Parameters

typeCode
Type: SystemByte
A type code of this extension object.
body
Type: SystemByte
A binary value portion.
Exceptions
ExceptionCondition
ArgumentException The typeCode is over 127. Higher values are reserved for MessagePack format specification.
ArgumentNullExceptionThe body is null.
See Also