Add the following code to enable it to download the cabinet filets over a proxy with additional authentification:
WebProxy proxy = new WebProxy("host:port"); proxy.Credentials = new System.Net.NetworkCredential("username", "password"); //, "domain"); web.Proxy = proxy;
Thanks for the tool..
More information about text formats
Extension to use a proxy with authentification.
Add the following code to enable it to download the cabinet filets over a proxy with additional authentification:
WebProxy proxy = new WebProxy("host:port");
proxy.Credentials = new System.Net.NetworkCredential("username", "password"); //, "domain");
web.Proxy = proxy;
Thanks for the tool..