UnpackingUnpackDictionary Method (Byte, Int32) |
Unpacks the dictionary from the specified byte array.
Namespace: MsgPackAssembly: MsgPack (in MsgPack.dll) Version: 0.6.0
Syntax public static UnpackingResult<MessagePackObjectDictionary> UnpackDictionary(
byte[] source,
int offset
)
Public Shared Function UnpackDictionary (
source As Byte(),
offset As Integer
) As UnpackingResult(Of MessagePackObjectDictionary)
public:
static UnpackingResult<MessagePackObjectDictionary^> UnpackDictionary(
array<unsigned char>^ source,
int offset
)
static member UnpackDictionary :
source : byte[] *
offset : int -> UnpackingResult<MessagePackObjectDictionary>
Parameters
- source
- Type: SystemByte
The byte array which contains Message Pack binary stream. - offset
- Type: SystemInt32
The offset to be unpacking start with.
Return Value
Type:
UnpackingResultMessagePackObjectDictionary
The
UnpackingResultT of
MessagePackObjectDictionary which contains unpacked the dictionary and processed bytes count.
Exceptions Remarks See Also