Click or drag to resize

DavEngineAsyncRegisterPropertyHandler Method

IT Hit WebDAV Classes Reference
Registers custom property handler.

Namespace:  ITHit.WebDAV.Server
Assembly:  ITHit.WebDAV.Server (in ITHit.WebDAV.Server.dll) Version: 13.3.13068
Syntax
public IPropertyHandler RegisterPropertyHandler(
	PropertyName propName,
	IPropertyHandler handler
)

Parameters

propName
Type: ITHit.WebDAV.ServerPropertyName
Property name.
handler
Type: ITHit.WebDAV.Server.ExtensibilityIPropertyHandler
Custom handled implementing IPropertyHandler interface.

Return Value

Type: IPropertyHandler
Original handler if any.
Remarks
Property handler allows formatting of property values to XML and reading property values from XML. Using this method you can register custom property handler to be called by the engine. If the handler for the specified property was already defined it is returned from this method. The original handler can be saved and called later from your custom handler.
See Also