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: 0.3.0+dc1307f20e065bb638e0b73a34cd216f57e486f1
Syntax
public static T CreateClient<T>(
	string hostName,
	int port,
	string objectName
)

Parameters

hostName  String
The host name of the RPC server.
port  Int32
The port of the RPC server.
objectName  String
The object name of the service.

Type Parameters

T
The type of the RPC interface.

Return Value

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