Namespace: ITHit.WebDAV.Client
Task UnCheckOutAsync( string lockToken = null, IDictionary<string, string> headers = null, CancellationToken cancellationToken = null )
[Missing <returns> documentation for "M:ITHit.WebDAV.Client.IFile.UnCheckOutAsync(System.String,System.Collections.Generic.IDictionary{System.String,System.String},System.Threading.CancellationToken)"]
Exception | Condition |
---|---|
InvalidCheckOutCheckInStateException | The resource must be under version control in checked out state. |
LockedException | This item is locked and invalid 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"); IFile file = await session.GetFileAsync(new Uri("https://server/directory/file.docx")); LockInfo lockInfo = await file.LockAsync(LockScope.Exclusive, false, "John Walter", TimeSpan.MaxValue); await file.CheckOutAsync(lockInfo.LockToken.LockToken); //Modify file content or properties here. //.... await file.UnCheckOutAsync(lockInfo.LockToken.LockToken); await file.UnlockAsync(lockInfo.LockToken.LockToken);