| IHazelcastInstanceGetSetT Method |
Returns the distributed set instance with the specified name.
Namespace:
Hazelcast.Core
Assembly:
Hazelcast.Net (in Hazelcast.Net.dll) Version: 3.9.3
Syntax IHSet<T> GetSet<T>(
string name
)
Function GetSet(Of T) (
name As String
) As IHSet(Of T)
generic<typename T>
IHSet<T>^ GetSet(
String^ name
)
abstract 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
Remarks Returns the distributed set instance with the specified name.
See Also