| EnumerableMessagePackSerializerBaseTCollection, TItemUnpackToCore 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
Syntaxprotected override sealed void UnpackToCore(
	Unpacker unpacker,
	TCollection collection
)
Protected Overrides NotOverridable Sub UnpackToCore ( 
	unpacker As Unpacker,
	collection As TCollection
)
protected:
virtual void UnpackToCore(
	Unpacker^ unpacker, 
	TCollection collection
) override sealed
abstract UnpackToCore : 
        unpacker : Unpacker * 
        collection : 'TCollection -> unit 
override UnpackToCore : 
        unpacker : Unpacker * 
        collection : 'TCollection -> unit Parameters
- unpacker
- Type: MsgPackUnpacker
 Unpacker which unpacks values of resulting object tree. This value will not be null.
- collection
- Type: TCollection
 Collection that the items to be stored. This value will not be null.
 Exceptions
Exceptions See Also
See Also