Click or drag to resize

DavEngineRegisterReportHandler Method

IT Hit WebDAV Classes Reference
Registers custom report handler.

Namespace: ITHit.WebDAV.Server
Assembly: ITHit.WebDAV.Server (in ITHit.WebDAV.Server.dll) Version: 4.5.3121.0
Syntax
public IReportHandler RegisterReportHandler(
	string name,
	string namespace,
	IReportHandler handler
)

Parameters

name
Type: SystemString
Report element name.
namespace
Type: SystemString
Report namespace.
handler
Type: ITHit.WebDAV.Server.ExtensibilityIReportHandler
Custom handled implementing IReportHandler interface.

Return Value

Type: IReportHandler
Original handler if any.
Remarks
Using this method you can register custom report handler to be called by the engine. If the handler for the specified token was already defined it is returned from this method. The original handler can be saved and called later from your custom handler.
See Also