Object
, IAddressManagerRootDispatcher
This class (and the following classes and interfaces) is used to perform RPC call using the following form:
| var x = remote_instance.property1.property2.method0(p1, p2, p3); | instead of: | RemoteCall rc = new RemoteCall(); | rc.method_name = "property1.property2.method0"; | rc.params = new ISerializable[3]; | rc.params[0] = p1; | rc.params[1] = p2; | rc.params[2] = p3; | var x = (SerClass)remote_instance.rpc_call(rc);