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

Namespace: MsgPack
Assembly: MsgPack (in MsgPack.dll) Version: 0.6.0
Syntax
public bool ContainsValue(
	MessagePackObject value
)

Parameters

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

Return Value

Type: Boolean
true if the MessagePackObjectDictionary contains an element with the value; otherwise, false.
Remarks
This method approaches an O(N) operation where N is Count.
See Also