  | IMultiMapTKey, TValueRemove Method (Object) | 
 Removes all the entries with the given key.
 
    Namespace: 
   Hazelcast.Core
    Assembly:
   Hazelcast.Net (in Hazelcast.Net.dll) Version: 3.11
SyntaxICollection<TValue> Remove(
	Object key
)
Function Remove ( 
	key As Object
) As ICollection(Of TValue)
ICollection<TValue>^ Remove(
	Object^ key
)
abstract Remove : 
        key : Object -> ICollection<'TValue> 
Parameters
- key
 - Type: SystemObject
the key of the entries to remove 
Return Value
Type: 
ICollectionTValue
                the collection of removed values associated with the given key. Returned collection
                might be modifiable but it has no effect on the multimap
            
See Also