MessagePackSerializerTUnpackToCore Method |
Deserializes collection items with specified
Unpacker and stores them to
collection.
Namespace: MsgPack.SerializationAssembly: MsgPack (in MsgPack.dll) Version: 0.6.0
Syntax protected virtual void UnpackToCore(
Unpacker unpacker,
T collection
)
Protected Overridable Sub UnpackToCore (
unpacker As Unpacker,
collection As T
)
protected:
virtual void UnpackToCore(
Unpacker^ unpacker,
T collection
)
abstract UnpackToCore :
unpacker : Unpacker *
collection : 'T -> unit
override UnpackToCore :
unpacker : Unpacker *
collection : 'T -> unit
Parameters
- unpacker
- Type: MsgPackUnpacker
Unpacker which unpacks values of resulting object tree. This value will not be null. - collection
- Type: T
Collection that the items to be stored. This value will not be null.
Exceptions See Also