WebDavSession.TimeOut Property

IT Hit WebDAV for .NET

Sets and gets time-out in milliseconds.

[Visual Basic]
NotOverridable Public Property TimeOut As Integer _
    Implements IConnectionSettings.TimeOut
[C#]
public int TimeOut {get; set;}

Property Value

The number of milliseconds to wait before the request times out. The default is 100,000 milliseconds (100 seconds).

Implements

IConnectionSettings.TimeOut

Example

The following example demonstrates how to upload a file from local file system to a WebDAV server.

                
string license = "<?xml version='1.0' encoding='utf...
WebDavSession session = new WebDavSession(license);
session.Credentials = new NetworkCredential("User1", "pwd");
IFolder folder = session.OpenFolder(new Uri("http://server:8080/Sales"));

IResource resource = folder.CreateResource("products.xlsx");
resource.AllowWriteStreamBuffering = false;
resource.TimeOut = 36000000; // 10 hours
resource.Upload("C:\\products.xlsx");
                
            

See Also

WebDavSession Class | ITHit.WebDAV.Client Namespace