WebClient / HttpWebRequest 웹 클라이언트 프로그래밍에서 간단한 WebClient 보다 세밀한 제어를 원할 경우, HttpWebRequest와 HttpWebResponse 클래스를 사용할 수 있다. 사실 WebClient는 HttpWebRequest와 HttpWebResponse 클래스를 내부적으로 사용하고 있는 Wrapper 클래스이다. 방법1. WebClient public JsonResultEntity HttpTest1(string str, int Num) { JsonResultEntity entity = new JsonResultEntity(); try { string URL = "API 호출주소"; WebClient webClient = new WebClient(); Syst..