Downloads content of the resource to a file specified by filename
| Exception Type | Condition |
|---|---|
| NotFoundException | This resource doesn't exist on the server. |
| WebDavHttpException | Server returned unknown error. |
| WebDavException | Unexpected error occurred. |
| IOException | An I/O error occurs. |
| ArgumentOutOfRangeException | File is empty. |
In the following example a file is downloaded from a WebDAV server to local file system.
string license = "<?xml version='1.0' encoding='utf...
WebDavSession session = new WebDavSession(license);
session.Credentials = new NetworkCredential("User1", "pwd");
IResource resource = session.OpenResource(new Uri("http://server:8080/Products/image.gif"));
resource.TimeOut = 36000000; // 10 hours
resource.Download("C:\\image.gif");
IItemContent Interface | ITHit.WebDAV.Client Namespace