Click or drag to resize
HandlerElementPath Property
Gets the path of this handler.

Namespace: Activsoft.Engine
Assembly: Activsoft.Engine (in Activsoft.Engine.dll) Version: 6.0.0.0
Syntax
public string Path { get; }

Property Value

Type: String
A string containing a regular expression.
Remarks
regular expression to determine whether the handler intercepts the request or not; the value tested against the regular expression is the local path of the request, without the IIS application root and without the query string.
Examples
if the URI requested is http://www.monwebsite.com/myapplication/myhandler.ashx and the application's path in IIS is /myapplication, the tested value is "myhandler.ashx".
See Also