  | ITransactionalTaskContextGetListT Method  | 
 Returns the transactional list instance with the specified name.
 
    Namespace: 
   Hazelcast.Transaction
    Assembly:
   Hazelcast.Net (in Hazelcast.Net.dll) Version: 3.10
SyntaxITransactionalList<T> GetList<T>(
	string name
)
Function GetList(Of T) ( 
	name As String
) As ITransactionalList(Of T)
generic<typename T>
ITransactionalList<T>^ GetList(
	String^ name
)
abstract GetList : 
        name : string -> ITransactionalList<'T> 
Parameters
- name
 - Type: SystemString
name of the list 
Type Parameters
- T
 
Return Value
Type: 
ITransactionalListTtransactional list instance with the specified name
RemarksReturns the transactional list instance with the specified name.
See Also