Server RegisterTypeForPrivateRemoteCall T, I  Method NetworkComms.Net Help
Registers a type for private RPC whereby each client generates it's own private instances on the server

Namespace: RemoteProcedureCalls
Assembly: RemoteProcedureCalls (in RemoteProcedureCalls.dll) Version: 3.0.0.0 (3.0.0.0)
Syntax

public static void RegisterTypeForPrivateRemoteCall<T, I>(
	int timeout = 2147483647
)
where T : new(), I

Parameters

timeout (Optional)
Type: OnlineSystem Int32
If specified each RPC object created will be destroyed if it is unused for a time, in ms, specified by timeout
Type Parameters

T
The type of object to create new instances of for RPC. Must implement I
I
Interface that should be provided for RPC
See Also