Namespace: ITHit.WebDAV.Server.DeltaV
| Exception | Condition |
|---|---|
| LockedException | This folder was locked. Client did not provide the lock token. |
| NeedPrivilegesException | The user doesn't have enough privileges. |
| InsufficientStorageException | Quota limit is reached. |
| DavException | In other cases. |
The code below is part of 'WebDAVServer.DeltaV' sample provided with the SDK.
public void SetComment(string comment) { context.ExecuteNonQuery( "UPDATE Version SET Comment = @Comment WHERE VersionId = @VersionId", "@VersionId", versionId, "@Comment", comment); }