WebProxy & authentication

S

Sparky

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

Cheers

Sparky
 
R

Ron Alberda [MSFT]

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top