Example #1
0
 private ResponseInfo Do(string method, Object body)
 {
     Request = HTTP.CreateRequest(Url, method, body, RequestOptions);
     return(HTTP.Send(Request));
 }
Example #2
0
 /// <summary>
 /// send the http request
 /// </summary>
 /// <param name="requestInto"></param>
 /// <returns></returns>
 public static ResponseInfo Send(this RequestInfo requestInto)
 {
     return(HTTP.Send(requestInto));
 }