S Sparky Nov 17, 2003 #1 Does WebProxy handle anything other than Basic Authentication - if so, more info would be much appreciated! Cheers Sparky
Does WebProxy handle anything other than Basic Authentication - if so, more info would be much appreciated! Cheers Sparky
R Ron Alberda [MSFT] Nov 19, 2003 #2 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
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