| 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.9.3
Syntax ITransactionalMap<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
Remarks Returns the transactional distributed map instance with the specified name.
See Also