  | HazelcastClientGetSetT Method  | 
 Returns the distributed set instance with the specified name.
 
    Namespace: 
   Hazelcast.Client
    Assembly:
   Hazelcast.Net (in Hazelcast.Net.dll) Version: 3.12.3
Syntaxpublic IHSet<T> GetSet<T>(
	string name
)
Public Function GetSet(Of T) ( 
	name As String
) As IHSet(Of T)
public:
generic<typename T>
virtual IHSet<T>^ GetSet(
	String^ name
) sealed
abstract GetSet : 
        name : string -> IHSet<'T> 
override GetSet : 
        name : string -> IHSet<'T> Parameters
- name
 - Type: SystemString
name of the distributed set 
Type Parameters
- T
 - The type of elements in the set
 
Return Value
Type: 
IHSetTdistributed set instance with the specified name
Implements
IHazelcastInstanceGetSetT(String)
RemarksReturns the distributed set instance with the specified name.
See Also