Namespace: ITHit.WebDAV.Client
[Missing <returns> documentation for "M:ITHit.WebDAV.Client.IHierarchyItem.SetCommentAndAuthorAsync(System.String,System.String)"]
Exception | Condition |
---|---|
UnauthorizedException | Request is not authorized. |
LockedException | The specified resource or folder is locked and the client either is not a lock owner or the lock type requires a lock token to be submitted and the client did not submit it. |
LockedException | This item is locked and no lock token was specified. |
ConflictException | The item is version controlled and has to be checked out to be edited. |
NotFoundException | This item 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); 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");