コード例 #1
0
ファイル: Http.cs プロジェクト: stone1234765/Solid
 public void Post(string url)
 {
     XmlHttpService.Request(url, "POST");
 }
コード例 #2
0
ファイル: Http.cs プロジェクト: stone1234765/Solid
 public void Get(string url, string options = null)
 {
     XmlHttpService.Request(url, "GET");
 }