Is there a built-in .NET class that can replace or work like WinHttp.WinHttpRequest?
Thanks!
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.
There is the System.Net.HttpRequest class:
HttpWebRequest Class
Provides an HTTP-specific implementation of the WebRequest class.
You can alternatively use the System.Net.WebClient class:
WebClient Class
Provides common methods for sending data to and receiving data from a resource identified by a URI.
This class simplifies some common tasks, like downloading a file (method
DownloadFile)