  | IMultiMapTKey, TValueContainsKey Method  | 
 Returns whether the multimap contains an entry with the key.
 
    Namespace: 
   Hazelcast.Core
    Assembly:
   Hazelcast.Net (in Hazelcast.Net.dll) Version: 3.10
Syntaxbool ContainsKey(
	TKey key
)
Function ContainsKey ( 
	key As TKey
) As Boolean
bool ContainsKey(
	TKey key
)
abstract ContainsKey : 
        key : 'TKey -> bool 
Parameters
- key
 - Type: TKey
the key whose existence is checked. 
Return Value
Type: 
Booleantrue if the multimap contains an entry with the key, false otherwise.
See Also