  | HazelcastClientGetReplicatedMapTKey, TValue Method  | 
 
            Returns the replicated map instance with the specified name.
            
 
    Namespace: 
   Hazelcast.Client
    Assembly:
   Hazelcast.Net (in Hazelcast.Net.dll) Version: 3.12.3
Syntaxpublic IReplicatedMap<TKey, TValue> GetReplicatedMap<TKey, TValue>(
	string name
)
Public Function GetReplicatedMap(Of TKey, TValue) ( 
	name As String
) As IReplicatedMap(Of TKey, TValue)
public:
generic<typename TKey, typename TValue>
virtual IReplicatedMap<TKey, TValue>^ GetReplicatedMap(
	String^ name
) sealed
abstract GetReplicatedMap : 
        name : string -> IReplicatedMap<'TKey, 'TValue> 
override GetReplicatedMap : 
        name : string -> IReplicatedMap<'TKey, 'TValue> Parameters
- name
 - Type: SystemString
name of the distributed map 
Type Parameters
- TKey
 - The type of the keys in the map
 - TValue
 - The type of the values in the map
 
Return Value
Type: 
IReplicatedMapTKey, 
TValuedistributed map instance with the specified name
Implements
IHazelcastInstanceGetReplicatedMapTKey, TValue(String)
See Also