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