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

Namespace: MsgPack.Serialization
Assembly: MsgPack (in MsgPack.dll) Version: 0.6.0
Syntax
protected virtual void UnpackToCore(
	Unpacker unpacker,
	T collection
)

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
ExceptionCondition
SerializationException Failed to deserialize object due to invalid unpacker state, stream content, or so.
NotSupportedExceptionT is not collection.
See Also