我提供HTTP Web服务,我的一个用户在
Windows 2003机器上使用C#WebClient类从我的网站检索数据.我的用户说WebClient正在创建许多浏览器实例,需要关闭.如何在创建浏览器后关闭浏览器?
他的代码:
Byte[] requestedHTML; WebClient client = new WebClient(); requestedHTML = client.DownloadData("http://abcabc.com/abc"); UTF8Encoding objUTF8 = new UTF8Encoding(); string returnMessage = objUTF8.GetString(requestedHTML);
附:抱歉,如果这听起来很业余,我对C#很新.
解决方法
WebClient不使用浏览器 – 它只是底层协议的包装器.您应该添加一个使用,但这与“许多浏览器实例”无关:
using(WebClient client = new WebClient()) { return client.DownloadString("http://abcabc.com/abc"); }