Interface IMoveHandler
Interface for the MOVE
handler
Inherited Members
Namespace:FubarDev.WebDavServer.Handlers
Assembly:FubarDev.WebDavServer.dll
Syntax
public interface IMoveHandler : IClass1Handler, IHandler
Methods
| Improve this Doc View SourceMoveAsync(String, Uri, CancellationToken)
Moves from the source to the destination
Declaration
[NotNull]
[ItemNotNull]
Task<IWebDavResult> MoveAsync([NotNull] string path, [NotNull] Uri destination, CancellationToken cancellationToken)
Parameters
Type | Name | Description |
---|---|---|
String | path | The source to move |
Uri | destination | The destination to move to |
CancellationToken | cancellationToken | The cancellation token |
Returns
Type | Description |
---|---|
Task<IWebDavResult> | The result of the operation |