MessagePackExtendedTypeObjectUnpack Method |
Namespace: MsgPackAssembly: MsgPack (in MsgPack.dll) Version: 0.6.0
Syntax public static MessagePackExtendedTypeObject Unpack(
byte typeCode,
byte[] body
)
Public Shared Function Unpack (
typeCode As Byte,
body As Byte()
) As MessagePackExtendedTypeObject
public:
static MessagePackExtendedTypeObject Unpack(
unsigned char typeCode,
array<unsigned char>^ body
)
static member Unpack :
typeCode : byte *
body : byte[] -> MessagePackExtendedTypeObject
Parameters
- typeCode
- Type: SystemByte
A type code of this extension object. - body
- Type: SystemByte
A binary value portion.
Return Value
Type:
MessagePackExtendedTypeObject[Missing <returns> documentation for "M:MsgPack.MessagePackExtendedTypeObject.Unpack(System.Byte,System.Byte[])"]
Exceptions Remarks
This method allows reserved type code. It means that this method does not throw exception when the typeCode is reserved value (greater then 0x7F).
See Also