Click or drag to resize
MessagePackObjectDictionaryRemove Method
Removes the element with the specified key from the MessagePackObjectDictionary.

Namespace: MsgPack
Assembly: MsgPack (in MsgPack.dll) Version: 0.6.0
Syntax
public bool Remove(
	MessagePackObject key
)

Parameters

key
Type: MsgPackMessagePackObject
The key of the element to remove.

Return Value

Type: Boolean
true if the element is successfully removed; otherwise, false. This method also returns false if key was not found in the original MessagePackObjectDictionary.

Implements

IDictionaryTKey, TValueRemove(TKey)
Exceptions
ExceptionCondition
ArgumentNullExceptionkey is Nil.
Remarks
This method approaches an O(1) operation.
See Also