Click or drag to resize
NonGenericDictionaryMessagePackSerializerTDictionaryUnpackToCore Method
Deserializes collection items with specified Unpacker and stores them to collection.

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

Parameters

unpacker
Type: MsgPackUnpacker
Unpacker which unpacks values of resulting object tree. This value will not be null.
collection
Type: TDictionary
Collection that the items to be stored. This value will not be null.
Exceptions
ExceptionCondition
SerializationException Failed to deserialize object due to invalid unpacker state, stream content, or so.
NotSupportedExceptionTDictionary is not collection.
See Also