| HandlerElementPath Property |
Gets the path of this handler.
Namespace: Activsoft.EngineAssembly: Activsoft.Engine (in Activsoft.Engine.dll) Version: 6.0.0.0
Syntaxpublic string Path { get; }Public ReadOnly Property Path As String
Get
public:
property String^ Path {
String^ get ();
}member Path : string with 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