  | HazelcastClientGetDistributedObjectT Method  | 
  
    Namespace: 
   Hazelcast.Client
    Assembly:
   Hazelcast.Net (in Hazelcast.Net.dll) Version: 3.11
Syntaxpublic T GetDistributedObject<T>(
	string serviceName,
	string name
)
where T : IDistributedObject
Public Function GetDistributedObject(Of T As IDistributedObject) ( 
	serviceName As String,
	name As String
) As T
public:
generic<typename T>
where T : IDistributedObject
virtual T GetDistributedObject(
	String^ serviceName, 
	String^ name
) sealed
abstract GetDistributedObject : 
        serviceName : string * 
        name : string -> 'T  when 'T : IDistributedObject
override GetDistributedObject : 
        serviceName : string * 
        name : string -> 'T  when 'T : IDistributedObjectParameters
- serviceName
 - Type: SystemString
name of the service - name
 - Type: SystemString
name of the object 
Type Parameters
- T
 
Return Value
Type: 
TIDistributedObject created by the service
Implements
IHazelcastInstanceGetDistributedObjectT(String, String)
See Also