Click or drag to resize

DavRequestClientLockTokens Property

IT Hit WebDAV Classes Reference
Gets a list of lock tokens submitted by the client.

Namespace:  ITHit.WebDAV.Server.Extensibility
Assembly:  ITHit.WebDAV.Server (in ITHit.WebDAV.Server.dll) Version: 7.1.4620
Syntax
public IList<string> ClientLockTokens { get; }

Property Value

Type: IListString
List of lock tokens submitted by the client.
Remarks
ClientLockTokens property provides access to the list of lock tokens submitted by the client. These lock tokens were generated during the call to your LockAsync(LockLevel, Boolean, NullableTimeSpan, String) method implementation, associated with the item and returned to client. When WebDAV client is modifying any server item it sends back to server the list of lock tokens. In your WebDAV server Class 2 implementation before modifying any locked items you must check if WebDAV client provided necessary lock token.
See Also