HttpContext.CurrentHandler Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the IHttpHandler object that represents the currently executing handler.
public:
property System::Web::IHttpHandler ^ CurrentHandler { System::Web::IHttpHandler ^ get(); };
public System.Web.IHttpHandler CurrentHandler { get; }
member this.CurrentHandler : System.Web.IHttpHandler
Public ReadOnly Property CurrentHandler As IHttpHandler
Property Value
An IHttpHandler that represents the currently executing handler.
Remarks
The currently executing handler that is referenced by the CurrentHandler property might be different than the handler that is referenced by the Handler property. This can occur when another handler was requested by using the Execute method or the Transfer method. When the currently executing handler finishes processing, the previously determined handler is restored.