WebProxy & authentication

  • Thread starter Thread starter Sparky
  • Start date Start date
S

Sparky

Does WebProxy handle anything other than Basic Authentication - if so, more
info would be much appreciated!

Cheers

Sparky
 
WebProxy has a Credentials property that can be used with any auth scheme:

WebProxy myProxy = new WebProxy("proxy", 80);
myProxy.Credentials = new NetworkCredential("username", "password");

-Ron
 
Back
Top