IItemContent.Download Method 

IT Hit WebDAV for .NET

Downloads content of the resource to a file specified by filename

[Visual Basic]
Sub Download( _
   ByVal filename As String _
)
[C#]
void Download(
   string filename
);

Parameters

filename
Full path of a file to be downloaded to

Exceptions

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.

Example

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");
                
            

See Also

IItemContent Interface | ITHit.WebDAV.Client Namespace