Click or drag to resize

RpcHelperCreateClientT Method

Creates a client for the specified RPC service.

Namespace:  Ookii.Jumbo.Rpc
Assembly:  Ookii.Jumbo (in Ookii.Jumbo.dll) Version: 2.0.0
Syntax
public static T CreateClient<T>(
	string hostName,
	int port,
	string objectName
)

Parameters

hostName
Type: SystemString
The host name of the RPC server.
port
Type: SystemInt32
The port of the RPC server.
objectName
Type: SystemString
The object name of the service.

Type Parameters

T
The type of the RPC interface.

Return Value

Type: T
An object that implements the specified interface that forwards all calls to the specified service.
See Also