Click or drag to resize
DictionaryMessagePackSerializerBaseTDictionary, TKey, TValueAddItem Method
When implemented by derive class, adds the deserialized item to the collection on TDictionary specific manner to implement UnpackToCore(Unpacker, TDictionary).

Namespace: MsgPack.Serialization.CollectionSerializers
Assembly: MsgPack (in MsgPack.dll) Version: 0.6.0
Syntax
protected virtual void AddItem(
	TDictionary dictionary,
	TKey key,
	TValue value
)

Parameters

dictionary
Type: TDictionary
The dictionary to be added.
key
Type: TKey
The key to be added.
value
Type: TValue
The value to be added.
Exceptions
ExceptionCondition
NotSupportedException This implementation always throws it.
See Also