Click or drag to resize
NonGenericEnumerableMessagePackSerializerBaseTCollectionAddItem 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,
	Object item
)

Parameters

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