I am developing an App where I would need to perform HTTP Request using C#.
Had in been PHP, I could use the HttpRequest class. Which class or group of class is best matched for the PHP HttpRequest by which I could make GET and POST Request.
I am developing an App where I would need to perform HTTP Request using
Share
Use the HttpWebRequest and HttpWebResponse classes in the System.Net namespace.