Click or drag to resize

IFileUpdateToVersionAsync Method (IVersion, String)

IT Hit WebDAV Classes Reference
Updates content and dead properties of item to those identified by version.

Namespace:  ITHit.WebDAV.Client
Assembly:  ITHit.WebDAV.Client (in ITHit.WebDAV.Client.dll) Version: 6.0.4052-Beta
Syntax
Task UpdateToVersionAsync(
	IVersion version,
	string lockToken
)

Parameters

version
Type: ITHit.WebDAV.ClientIVersion
Version to update to.
lockToken
Type: SystemString
Lock token for this item.

Return Value

Type: Task

[Missing <returns> documentation for "M:ITHit.WebDAV.Client.IFile.UpdateToVersionAsync(ITHit.WebDAV.Client.IVersion,System.String)"]

Exceptions
ExceptionCondition
InvalidCheckOutCheckInStateException The resource must be under version control in checked in state.
LockedExceptionThis item is locked and invalid lock token was provided.
UnauthorizedExceptionRequest is not authorized.
NotFoundExceptionThis resource doesn't exist on the server.
WebDavHttpExceptionServer returned unknown error.
WebDavExceptionIn case of any unexpected error.
Examples
The following example demonstrates how to restore specific version of the item.
string license = "<?xml version='1.0' encoding='utf...
WebDavSessionAsync session = new WebDavSessionAsync(license);
session.Credentials = new NetworkCredential("User1", "pwd");

IFile file = await session.GetFileAsync("https://server/sales.docx");
LockInfo lockInfo = await file.LockAsync(LockScope.Exclusive, false, "John Walter", TimeSpan.MaxValue);
IVersion version = await session.OpenVersionAsync(new Uri("https://server/sales.docx?version=2"));
await file.UpdateToVersionAsync(version, lockInfo.LockToken.LockToken);
await file.UnlockAsync(lockInfo.LockToken.LockToken);
See Also