Interface IPropPatchHandler
Interface for the PROPPATCH
handler
Inherited Members
Namespace:FubarDev.WebDavServer.Handlers
Assembly:FubarDev.WebDavServer.dll
Syntax
public interface IPropPatchHandler : IClass1Handler, IHandler
Methods
| Improve this Doc View SourcePropPatchAsync(String, propertyupdate, CancellationToken)
Patches (sets or removes) properties from the given path
Declaration
[NotNull]
[ItemNotNull]
Task<IWebDavResult> PropPatchAsync([NotNull] string path, [NotNull] propertyupdate request, CancellationToken cancellationToken)
Parameters
Type | Name | Description |
---|---|---|
String | path | The path to patch the properties for |
propertyupdate | request | The properties to patch |
CancellationToken | cancellationToken | The cancellcation token |
Returns
Type | Description |
---|---|
Task<IWebDavResult> | The result of the operation |