找不到 WebClient

WebClient could not be found

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

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

The type or namespace name 'WebClient' could not be found (ae you missing a using directive or an assembly reference?)

我尝试在 google 上搜索如何解决这个错误,但没有找到正确的答案(我也试过 HttpClient,结果相同)。

如何确保我得到他特定页面的内容?

顺便说一句,这是我现在拥有的:

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

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

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

还可以将 using System.Net; 包含到您计划使用 WebClient 的源代码的 usings 指令部分,或者使用其完全限定名称,即:

var client = new System.Net.WebClient()