Click or drag to resize

WebDavSessionProxy Property

IT Hit WebDAV Classes Reference
Sets and gets proxy's settings for connection.

Namespace:  ITHit.WebDAV.Client
Assembly:  ITHit.WebDAV.Client (in ITHit.WebDAV.Client.dll) Version: 2.0.420.0
Syntax
public IWebProxy Proxy { get; set; }

Property Value

Type: IWebProxy
Examples
string license = "<?xml version='1.0' encoding='utf...
WebDavSession session = new WebDavSession(license);
WebProxy proxy = new WebProxy();
proxy.Address = new Uri("http://server1:8888");
proxy.Credentials = new NetworkCredential("User1", "pwd");
session.Proxy = proxy;
IFolder folder = session.OpenFolder(new Uri("http://server2:9876/"));
See Also