无法找到WebClient

时间:2016-03-03 14:32:49

标签: c# asp.net .net webclient dotnet-httpclient

我已经在Stack Overflow(和谷歌)上搜索,但找不到解决我问题的具体答案。

我想从页面中读取一些内容。我曾尝试使用Webclient,但这给了我这个错误:

  

无法找到类型或命名空间名称“WebClient”(ae你   缺少using指令或程序集引用?)

我试图在谷歌搜索如何解决此错误,但没有找到正确答案(我也尝试了HttpClient,结果相同)。

如何确保获取其特定页面的内容?

是的,这就是我现在所拥有的:

WebClient client = new WebClient();
// Use google as test page
string downloadString = client.DownloadString("http://www.gooogle.com");

我正在使用Visual Studio 2015社区和ASP.Net v5

1 个答案:

答案 0 :(得分:3)

确保您在项目中引用了System.dll

还要包括using System.Net;使用源代码的指令部分,您计划使用WebClient或使用其完全限定名称,即:

var client = new System.Net.WebClient()