Example #1
0
 public AsyncCall(String url, Program.HTTPMETHODS method,  String content, Program.Del del)
 {
     this.del = del;
     this.url = url;
     this.method = method;
     this.content = content;
 }
Example #2
0
 public AsyncCall(String url, Program.HTTPMETHODS method, Program.Del del)
 {
     this.del = del;
     this.url = url;
     this.method = method;
 }