  | HazelcastClientGetMultiMapTKey, TValue Method  | 
 Returns the distributed multimap instance with the specified name.
 
    Namespace: 
   Hazelcast.Client
    Assembly:
   Hazelcast.Net (in Hazelcast.Net.dll) Version: 3.11
Syntaxpublic IMultiMap<TKey, TValue> GetMultiMap<TKey, TValue>(
	string name
)
Public Function GetMultiMap(Of TKey, TValue) ( 
	name As String
) As IMultiMap(Of TKey, TValue)
public:
generic<typename TKey, typename TValue>
virtual IMultiMap<TKey, TValue>^ GetMultiMap(
	String^ name
) sealed
abstract GetMultiMap : 
        name : string -> IMultiMap<'TKey, 'TValue> 
override GetMultiMap : 
        name : string -> IMultiMap<'TKey, 'TValue> Parameters
- name
 - Type: SystemString
name of the distributed multimap 
Type Parameters
- TKey
 - The type of the keys in the multimap
 - TValue
 - The type of the values in the multimap
 
Return Value
Type: 
IMultiMapTKey, 
TValuedistributed multimap instance with the specified name
Implements
IHazelcastInstanceGetMultiMapTKey, TValue(String)
RemarksReturns the distributed multimap instance with the specified name.
See Also