コード例 #1
0
ファイル: RestClient.Sync.cs プロジェクト: cdaven/RestSharp
 private static HttpResponse DoExecuteAsPost(IHttp http, string method) => http.AsPost(method);
コード例 #2
0
 private static HttpResponse DoExecuteAsPost(IHttp http, string method)
 {
     return(http.AsPost(method));
 }
コード例 #3
0
 public HttpResponse AsPost(string httpMethod)
 {
     return(_rawHttp.AsPost(httpMethod));
 }