DictionaryMessagePackSerializerBaseTDictionary, TKey, TValueUnpackToCore Method |
Deserializes collection items with specified
Unpacker and stores them to
collection.
Namespace: MsgPack.Serialization.CollectionSerializersAssembly: MsgPack (in MsgPack.dll) Version: 0.6.0
Syntax protected override sealed void UnpackToCore(
Unpacker unpacker,
TDictionary collection
)
Protected Overrides NotOverridable Sub UnpackToCore (
unpacker As Unpacker,
collection As TDictionary
)
protected:
virtual void UnpackToCore(
Unpacker^ unpacker,
TDictionary collection
) override sealed
abstract UnpackToCore :
unpacker : Unpacker *
collection : 'TDictionary -> unit
override UnpackToCore :
unpacker : Unpacker *
collection : 'TDictionary -> unit
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 See Also