Click or drag to resize
NonGenericEnumerableMessagePackSerializerBaseTCollectionUnpackToCore 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,
	TCollection collection
)

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