Click or drag to resize
EnumerableMessagePackSerializerBaseTCollection, TItemAddItem Method
When implemented by derive class, adds the deserialized item to the collection on TCollection specific manner to implement UnpackToCore(Unpacker, TCollection).

Namespace: MsgPack.Serialization.CollectionSerializers
Assembly: MsgPack (in MsgPack.dll) Version: 0.6.0
Syntax
protected virtual void AddItem(
	TCollection collection,
	TItem item
)

Parameters

collection
Type: TCollection
The collection to be added.
item
Type: TItem
The item to be added.
Exceptions
ExceptionCondition
NotSupportedException This implementation always throws it.
See Also