  | ITransactionalTaskContextGetSetT Method  | 
 Returns the transactional set instance with the specified name.
 
    Namespace: 
   Hazelcast.Transaction
    Assembly:
   Hazelcast.Net (in Hazelcast.Net.dll) Version: 3.9.2
SyntaxITransactionalSet<T> GetSet<T>(
	string name
)
Function GetSet(Of T) ( 
	name As String
) As ITransactionalSet(Of T)
generic<typename T>
ITransactionalSet<T>^ GetSet(
	String^ name
)
abstract GetSet : 
        name : string -> ITransactionalSet<'T> 
Parameters
- name
 - Type: SystemString
name of the set 
Type Parameters
- T
 
Return Value
Type: 
ITransactionalSetTtransactional set instance with the specified name
RemarksReturns the transactional set instance with the specified name.
See Also