Click or drag to resize

IOptionsHandler Interface

IT Hit WebDAV Classes Reference
Provides point of extension to OPTIONS request.

Namespace:  ITHit.WebDAV.Server.Extensibility
Assembly:  ITHit.WebDAV.Server (in ITHit.WebDAV.Server.dll) Version: 13.3.13068
Syntax
public interface IOptionsHandler

The IOptionsHandler type exposes the following members.

Methods
  NameDescription
Public methodAppliesTo
The method is called to determine if the option is available for the item and shall be enlisted in DAV header for OPTIONS response.
Top
Remarks
If you need to implement your own extension to WebDAV and add token to DAV header in OPTIONS response, implement this interface and register it with RegisterOptionsHandler(String, IOptionsHandler) method passing token as first argument to it. When building DAV header engine will call all registered options handlers to determine if this particular options is available for the item.
See Also