Namespace: ITHit.WebDAV.Client
| Exception | 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. |
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");