private static HttpWebRequest DoAsPostAsync(IHttp http, Action <HttpResponse> response_cb, string method)
 {
     return(http.AsPostAsync(response_cb, method));
 }
Beispiel #2
0
 private static HttpWebRequest DoAsPostAsync(IHttp http, Action <HttpResponse> responseCb, string method)
 => http.AsPostAsync(responseCb, method);
Beispiel #3
0
 private async static Task <HttpResponse> DoExecuteAsPostAsync(IHttp http, string method, CacheMode cacheMode = CacheMode.Skip, TimeSpan?cacheExpiry = null)
 {
     return(await http.AsPostAsync(method));
 }
Beispiel #4
0
 private async static Task<HttpResponse> DoExecuteAsPostAsync(IHttp http, string method)
 {
     return await http.AsPostAsync(method);
 }
 public HttpWebRequest AsPostAsync(Action <HttpResponse> action, string httpMethod)
 {
     return(_rawHttp.AsPostAsync(action, httpMethod));
 }
Beispiel #6
0
 private async static Task <HttpResponse> DoExecuteAsPostAsync(IHttp http, string method)
 {
     return(await http.AsPostAsync(method));
 }