Created
June 12, 2015 16:41
-
-
Save ordepdev/f06d1a0d2bd7ae43d152 to your computer and use it in GitHub Desktop.
Inject an intranet proxy
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var proxy = new System.Net.WebProxy() | |
{ | |
Address = new System.Uri("http://000.000.000.000:0000"), | |
Credentials = new System.Net.NetworkCredential("username", "password") | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment