Tagged Questions
5
votes
2answers
1k views
Detect HTTP Proxy error for WebRequest
How to detect that a WebRequest failed due to a web proxy error and not a target web server error?
try
{
var request = (HttpWebRequest)WebRequest.Create("http://www.example.com");
...