What is the best and simplest http user agent in .NET?
I simply want to put in the url have it return the page as a string.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Thanks to @ion todriel, a suggestion based on
System.Net.HttpWebRequest:Note the line
string page = reader.ReadToEnd ();– return the whole page as a string.This is not more complicated than the earlier
System.Net.WebClinetwith an example in the reference document.