























If you need to call external web pages. You may need the following code
System.Net.WebProxy webProxy = new System.Net.WebProxy("172.28.3.10:8080");
System.Net.WebClient webClient = new System.Net.WebClient();
webClient.Encoding = System.Text.Encoding.UTF8;
webClient.Proxy = webProxy;
string x = webClient.DownloadString("http://www.raychou.com/weather/rss.php?id=58357");
此内容由惯性聚合(RSS阅读器)自动聚合整理,仅供阅读参考。 原文来自 — 版权归原作者所有。