Namespace: ITHit.WebDAV.Client
Exception | Condition |
---|---|
UnauthorizedException | Incorrect credentials provided or insufficient permissions to access the requested item. |
NotFoundException | The requested folder doesn't exist on the server. |
ForbiddenException | The server refused to fulfill the request. |
WebDavException | Unexpected error occurred. |
string license = "<?xml version='1.0' encoding='utf... WebDavSessionAsync session = new WebDavSessionAsync(license); session.Credentials = new NetworkCredential("User1", "pwd"); IFileAsync file = await session.OpenFileAsync("http://server/sales.docx"); LockInfo lockInfo = await file.LockAsync(LockScope.Exclusive, false, "John Walter", TimeSpan.MaxValue); IVersionAsync version = await session.OpenVersionAsync(new Uri("http://server/sales.docx?version=2")); await file.UpdateToVersionAsync(version, lockInfo.LockToken.LockToken); await file.UnlockAsync(lockInfo.LockToken.LockToken);