Exemplo n.º 1
0
        public string http_post(string url, string data)
        {
            string strReturn = "";

            strReturn = S_Net.http_post("", url, data, "POST", "utf-8", "");
            return(strReturn);
        }
Exemplo n.º 2
0
 public string http_get_ref(string url, string encode, string reference)
 {
     return(S_Net.Http(url, "GET", "", encode, reference));
 }
Exemplo n.º 3
0
 public string http_get(string url, string encode = "utf-8")
 {
     return(S_Net.Http(url, "GET", "", encode));
 }