| IHazelcastInstanceGetMultiMapTKey, TValue Method |
Returns the distributed multimap instance with the specified name.
Namespace:
Hazelcast.Core
Assembly:
Hazelcast.Net (in Hazelcast.Net.dll) Version: 3.9.3
Syntax IMultiMap<TKey, TValue> GetMultiMap<TKey, TValue>(
string name
)
Function GetMultiMap(Of TKey, TValue) (
name As String
) As IMultiMap(Of TKey, TValue)
generic<typename TKey, typename TValue>
IMultiMap<TKey, TValue>^ GetMultiMap(
String^ name
)
abstract 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
Remarks Returns the distributed multimap instance with the specified name.
See Also