コード例 #1
0
 public string Get(string requestType, iUrlParameters parametes) =>
 DownloadString(new Uri($"{RequestAddress}{requestType}&{parametes.GetUrlEncodedData()}"));
コード例 #2
0
 public string Post(string requestType, iUrlParameters postableObj) =>
 UploadString(new Uri($"{RequestAddress}{requestType}"), postableObj.GetUrlEncodedData());