WebDavSessionTimeOut Property
IT Hit WebDAV Classes Reference
Sets and gets time-out in milliseconds.
Namespace:
ITHit.WebDAV.Client
Assembly:
ITHit.WebDAV.Client (in ITHit.WebDAV.Client.dll) Version: 6.0.4052-Beta
Syntax public int TimeOut { get; set; }
Public Property TimeOut As Integer
Get
Set
public:
property int TimeOut {
int get ();
void set (int value);
}
member TimeOut : int with get, set
Property Value
Type:
Int32The number of milliseconds to wait before the request times out. The default is 100,000 milliseconds (100 seconds).
Examples
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...
WebDavSessionAsync session = new WebDavSessionAsync(license);
session.Credentials = new NetworkCredential("User1", "pwd");
IFolder folder = await session.GetFolderAsync(new Uri("https://server:8080/Sales"));
IFile file = await folder.CreateFileAsync("products.xlsx");
file.AllowWriteStreamBuffering = false;
file.TimeOut = 36000000;
await file.UploadAsync("C:\\products.xlsx");
See Also