예제 #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");
 }