HttpApplication.MapRequestHandler Event
.NET Framework 3.0
This event supports the .NET Framework infrastructure and is not intended to be used directly from your code.
Occurs when the handler is selected to respond to the request.
Namespace: System.WebAssembly: System.Web (in system.web.dll)
public: event EventHandler^ MapRequestHandler { void add (EventHandler^ value); void remove (EventHandler^ value); }
/** @event */ public void add_MapRequestHandler (EventHandler value) /** @event */ public void remove_MapRequestHandler (EventHandler value)
In JScript, you can handle the events defined by a class, but you cannot define your own.
Not applicable.
The MapRequestHandler event is used by the ASP.NET infrastructure to determine the request handler for the current request. For more information, see How to: Register HTTP Handlers.
For more information about how to handle events, see Consuming Events.
MapRequestHandler is introduced in the .NET Framework version 3.5. For more information, see The .NET Framework 3.5 Architecture.
Community Additions
ADD
Show: