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); }
public static void asyncRequest(this XmlRpcClient client, String methodName, GbxCallCallbackHandler handler) { client.AsyncRequest(methodName, new object[] { }, handler); }