Namespace: ITHit.WebDAV.Client
[Missing <returns> documentation for "M:ITHit.WebDAV.Client.IItemContentAsync.UploadAsync(System.String)"]
Exception | Condition |
---|---|
NotFoundException | This resource doesn't exist on the server. |
ConflictException | The resource is version controlled and has to be checked out to be edited. |
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... WebDavSessionAsync session = new WebDavSessionAsync(license); session.Credentials = new NetworkCredential("User1", "pwd"); IFolderAsync folder = await session.OpenFolderAsync(new Uri("http://server:8080/Sales")); IFileAsync file = await folder.CreateFileAsync("products.xlsx"); file.AllowWriteStreamBuffering = false; file.TimeOut = 36000000; // 10 hours await file.UploadAsync("C:\\products.xlsx");