private static HttpWebRequest DoAsGetAsync(IHttp http, Action <HttpResponse> response_cb, string method) { return(http.AsGetAsync(response_cb, method)); }
private static HttpWebRequest DoAsGetAsync(IHttp http, Action <HttpResponse> responseCb, string method) => http.AsGetAsync(responseCb, method);
private async static Task <HttpResponse> DoExecuteAsGetAsync(IHttp http, string method, CacheMode cacheMode = CacheMode.Skip, TimeSpan?cacheExpiry = null) { return(await http.AsGetAsync(method, cacheMode, cacheExpiry)); }
private async static Task<HttpResponse> DoExecuteAsGetAsync(IHttp http, string method) { return await http.AsGetAsync(method); }
public HttpWebRequest AsGetAsync(Action <HttpResponse> action, string httpMethod) { return(_rawHttp.AsGetAsync(action, httpMethod)); }
private async static Task <HttpResponse> DoExecuteAsGetAsync(IHttp http, string method) { return(await http.AsGetAsync(method)); }