我已经在Stack Overflow(和Google)上进行搜索,但是找不到解决我的问题的具体答案。
我想从页面中读取一些内容。我尝试使用Webclient
,但这给了我这个错误:
我尝试在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;
的源代码的usings指令部分添加WebClient
,或使用其完全限定的名称,即:
var client = new System.Net.WebClient()
关于c# - 找不到WebClient,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/35775000/