I\'m receiving a 403 error when requesting data from a URL. This is expected and I\'m not asking how to correct it. When pasting this URL directly into my browser, I g
You're looking for the WebException.Response property:
WebException.Response
catch(WebException ex) { var response = (HttpWebResponse)ex.Response; }