Ejemplo n.º 1
0
 public static void asyncRequest(this XmlRpcClient client, GbxCallCallbackHandler handler, String methodName, params object[] param)
 {
     if (param == null)
     {
         param = new object[] { }
     }
     ;
     client.AsyncRequest(methodName, param, handler);
 }
Ejemplo n.º 2
0
 public static void asyncRequest(this XmlRpcClient client, String methodName, GbxCallCallbackHandler handler)
 {
     client.AsyncRequest(methodName, new object[] { }, handler);
 }