Interface IUnlockHandler
Interface for the UNLOCK
handler
Inherited Members
Namespace:FubarDev.WebDavServer.Handlers
Assembly:FubarDev.WebDavServer.dll
Syntax
public interface IUnlockHandler : IClass2Handler, IHandler
Methods
| Improve this Doc View SourceUnlockAsync(String, LockTokenHeader, CancellationToken)
Removes a LOCK with the given stateToken from the given path
Declaration
[NotNull]
[ItemNotNull]
Task<IWebDavResult> UnlockAsync([NotNull] string path, [NotNull] LockTokenHeader stateToken, CancellationToken cancellationToken)
Parameters
Type | Name | Description |
---|---|---|
String | path | The path to remove the lock for |
LockTokenHeader | stateToken | The state token of the lock to remove |
CancellationToken | cancellationToken | The cancellcation token |
Returns
Type | Description |
---|---|
Task<IWebDavResult> | The result of the operation |