Click or drag to resize
MessagePackObjectDictionaryContainsKey Method
Determines whether the MessagePackObjectDictionary contains an element with the specified key.

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

Parameters

key
Type: MsgPackMessagePackObject
The key to locate in the MessagePackObjectDictionary.

Return Value

Type: Boolean
true if the MessagePackObjectDictionary contains an element with the key; otherwise, false.

Implements

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