MessagePackObjectDictionaryContainsValue Method |
Namespace: MsgPackAssembly: MsgPack (in MsgPack.dll) Version: 0.6.0
Syntax public bool ContainsValue(
MessagePackObject value
)
Public Function ContainsValue (
value As MessagePackObject
) As Boolean
public:
bool ContainsValue(
MessagePackObject value
)
member ContainsValue :
value : MessagePackObject -> bool
Parameters
- value
- Type: MsgPackMessagePackObject
The value to locate in the MessagePackObjectDictionary.
Return Value
Type:
Booleantrue 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