Namespace: ITHit.WebDAV.Client
 Syntax
SyntaxTask CheckOutAsync( string lockToken = null, IDictionary<string, string> headers = null, CancellationToken cancellationToken = null )
[Missing <returns> documentation for "M:ITHit.WebDAV.Client.IFile.CheckOutAsync(System.String,System.Collections.Generic.IDictionary{System.String,System.String},System.Threading.CancellationToken)"]
 Exceptions
Exceptions| Exception | Condition | 
|---|---|
| InvalidCheckOutCheckInStateException | The resource must be versionable and in checked in state. | 
| UnsupportedDeltaVResult | Server returned result that is not supported by this client( DAV:checkout-of-version-with-descendant-is-forbidden DAV:checkout-of-version-with-descendant-is-discouraged DAV:checkout-of-checked-out-version-is-forbidden DAV:checkout-of-checked-out-version-is-discouraged) | 
| 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. | 
 Remarks
Remarks Examples
Examplesstring 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); await file.UpdatePropertiesAsync( new Property[] {new Property(new PropertyName("amount", "server"), "2")}, null, lockInfo.LockToken.LockToken); IVersion version = await file.CheckInAsync(lockInfo.LockToken.LockToken); await file.UnlockAsync(lockInfo.LockToken.LockToken); await version.SetCommentAndAuthorAsync("Fixed some bugs.", "John");
 See Also
See Also