Namespace: ITHit.WebDAV.Client
| Exception | Condition | 
|---|---|
| ForbiddenException | Creation of child items not allowed. | 
| NotFoundException | This folder doesn't exist on the server. | 
| LockedException | This folder is locked and no or invalid lock token was specified. | 
| WebDavHttpException | Server returned unknown error. | 
| WebDavException | Unexpected error occurred. | 
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; // 10 hours await file.UploadAsync("C:\\products.xlsx");