예제 #1
0
 public void Get(string path, string query = "", RequestParams content = null, ResponseType respType = ResponseType.Text, Action <string> callback = null)
 {
     MakeRequest(path, HttpMethod.Get, query, content == null ? null : new StringContent(content.ToJSONString(), Encoding.UTF8, "application/json"), callback);
 }