  | IHazelcastInstanceGetDistributedObjectT Method  | 
  
    Namespace: 
   Hazelcast.Core
    Assembly:
   Hazelcast.Net (in Hazelcast.Net.dll) Version: 3.12.2
SyntaxT GetDistributedObject<T>(
	string serviceName,
	string name
)
where T : IDistributedObject
Function GetDistributedObject(Of T As IDistributedObject) ( 
	serviceName As String,
	name As String
) As T
generic<typename T>
where T : IDistributedObject
T GetDistributedObject(
	String^ serviceName, 
	String^ name
)
abstract GetDistributedObject : 
        serviceName : string * 
        name : string -> 'T  when 'T : IDistributedObject
Parameters
- 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
See Also