Esempio n. 1
0
 public HproseInvocationHandler(IHproseInvoker client, String ns)
 {
     this.client = client;
     this.ns     = ns;
 }
Esempio n. 2
0
 public HproseInvocationHandler(IHproseInvoker client, String ns)
 {
     this.client = client;
     this.ns = ns;
 }
Esempio n. 3
0
 public void Invoke(IHproseInvoker client, string functionName, object[] args, Delegate callback)
 {
     client.Invoke <T>(functionName, args, (HproseCallback1 <T>)callback);
 }