  | IMultiMapTKey, TValuePut Method  | 
 Stores a key-value pair in the multimap.
 
    Namespace: 
   Hazelcast.Core
    Assembly:
   Hazelcast.Net (in Hazelcast.Net.dll) Version: 3.10
Syntaxbool Put(
	TKey key,
	TValue value
)
Function Put ( 
	key As TKey,
	value As TValue
) As Boolean
bool Put(
	TKey key, 
	TValue value
)
abstract Put : 
        key : 'TKey * 
        value : 'TValue -> bool 
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