Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

WebClient could not be found

I've already search on Stack Overflow (and google), but can't find the specific answer that solves my problem.

I want to read some content out of a page. I've tried to use Webclient, but that gives me this error:

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

I've tried to search on google how to solve this error, but didn't find a correct answer (I've also tried HttpClient, same result).

How do I make sure that I get the content of his specific page?

Btw, this is what I have right now:

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

And I'm using Visual Studio 2015 Community and ASP.Net v5

like image 382
M Zeinstra Avatar asked Mar 03 '16 14:03

M Zeinstra


1 Answers

Make sure you have reference to System.dll in your project.

Also either include using System.Net; to usings directive section of the source code where you're planning to use WebClient or use its fully-qualified name, i.e.:

var client = new System.Net.WebClient()
like image 86
Andrey Korneyev Avatar answered Oct 12 '22 23:10

Andrey Korneyev