Namespace: ITHit.WebDAV.Client
[Missing <returns> documentation for "M:ITHit.WebDAV.Client.IFileAsync.UpdateToVersionAsync(ITHit.WebDAV.Client.IVersionAsync)"]
Exception | Condition |
---|---|
InvalidCheckOutCheckInStateException | The resource must be under version control in checked in state. |
LockedException | The resource is locked and no lock token was provided. |
UnauthorizedException | Request is not authorized. |
NotFoundException | This resource doesn't exist on the server. |
WebDavHttpException | Server returned unknown error. |
WebDavException | In case of any unexpected error. |
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);