Click or drag to resize

IMultiMapTKey, TValuePut Method

Stores a key-value pair in the multimap.

Namespace:  Hazelcast.Core
Assembly:  Hazelcast.Net (in Hazelcast.Net.dll) Version: 3.9.2
Syntax
bool Put(
	TKey key,
	TValue value
)

Parameters

key
Type: TKey
the key to be stored
value
Type: TValue
the value to be stored

Return Value

Type: Boolean
true if size of the multimap is increased, false if the multimap already contains the key-value pair.
See Also