| IMultiMapTKey, TValueRemove Method (Object, Object) |
Removes the given key value pair from the multimap.
Namespace:
Hazelcast.Core
Assembly:
Hazelcast.Net (in Hazelcast.Net.dll) Version: 3.12.3
Syntax bool Remove(
Object key,
Object value
)
Function Remove (
key As Object,
value As Object
) As Boolean
bool Remove(
Object^ key,
Object^ value
)
abstract Remove :
key : Object *
value : Object -> bool
Parameters
- key
- Type: SystemObject
the key of the entry to remove - value
- Type: SystemObject
the value of the entry to remove
Return Value
Type:
Booleantrue if the size of the multimap changed after the remove operation, false otherwise.
See Also