Click or drag to resize
DictionaryMessagePackSerializerBaseTDictionary, TKey, TValueUnpackFromCore Method
Deserializes object with specified Unpacker.

Namespace: MsgPack.Serialization.CollectionSerializers
Assembly: MsgPack (in MsgPack.dll) Version: 0.6.0
Syntax
protected override sealed TDictionary UnpackFromCore(
	Unpacker unpacker
)

Parameters

unpacker
Type: MsgPackUnpacker
Unpacker which unpacks values of resulting object tree. This value will not be null.

Return Value

Type: TDictionary
Deserialized object.
Exceptions
ExceptionCondition
SerializationException Failed to deserialize object due to invalid unpacker state, stream content, or so.
MessageTypeException Failed to deserialize object due to invalid unpacker state, stream content, or so.
InvalidMessagePackStreamException Failed to deserialize object due to invalid unpacker state, stream content, or so.
NotSupportedExceptionTDictionary is abstract type.
Remarks
This method invokes CreateInstance(Int32), and then fill deserialized items to resultong collection.
See Also