  | ITransactionalTaskContextGetMapTKey, TValue Method  | 
 Returns the transactional distributed map instance with the specified name.
 
    Namespace: 
   Hazelcast.Transaction
    Assembly:
   Hazelcast.Net (in Hazelcast.Net.dll) Version: 3.12.3
SyntaxITransactionalMap<TKey, TValue> GetMap<TKey, TValue>(
	string name
)
Function GetMap(Of TKey, TValue) ( 
	name As String
) As ITransactionalMap(Of TKey, TValue)
generic<typename TKey, typename TValue>
ITransactionalMap<TKey, TValue>^ GetMap(
	String^ name
)
abstract GetMap : 
        name : string -> ITransactionalMap<'TKey, 'TValue> 
Parameters
- name
 - Type: SystemString
name of the distributed map 
Type Parameters
- TKey
 - TValue
 
Return Value
Type: 
ITransactionalMapTKey, 
TValuetransactional distributed map instance with the specified name
RemarksReturns the transactional distributed map instance with the specified name.
See Also