Interface IGetHandler
Interface for the GET
handler
Inherited Members
Namespace:FubarDev.WebDavServer.Handlers
Assembly:FubarDev.WebDavServer.dll
Syntax
public interface IGetHandler : IClass1Handler, IHandler
Methods
| Improve this Doc View SourceGetAsync(String, CancellationToken)
Gets the element at the given path
Declaration
[NotNull]
[ItemNotNull]
Task<IWebDavResult> GetAsync([NotNull] string path, CancellationToken cancellationToken)
Parameters
Type | Name | Description |
---|---|---|
String | path | The path to the element to get |
CancellationToken | cancellationToken | The cancellcation token |
Returns
Type | Description |
---|---|
Task<IWebDavResult> | The result of the operation |