  | HazelcastClientGetListT Method  | 
 Returns the distributed list instance with the specified name.
 
    Namespace: 
   Hazelcast.Client
    Assembly:
   Hazelcast.Net (in Hazelcast.Net.dll) Version: 3.11
Syntaxpublic IHList<T> GetList<T>(
	string name
)
Public Function GetList(Of T) ( 
	name As String
) As IHList(Of T)
public:
generic<typename T>
virtual IHList<T>^ GetList(
	String^ name
) sealed
abstract GetList : 
        name : string -> IHList<'T> 
override GetList : 
        name : string -> IHList<'T> Parameters
- name
 - Type: SystemString
name of the distributed list 
Type Parameters
- T
 - The type of elements in the list
 
Return Value
Type: 
IHListTdistributed list instance with the specified name
Implements
IHazelcastInstanceGetListT(String)
Remarks
                Returns the distributed list instance with the specified name.
                Index based operations on the list are not supported.
            
See Also