HttpContext.PreviousHandler Property

Definition

Gets the IHttpHandler object for the parent handler.

public:
 property System::Web::IHttpHandler ^ PreviousHandler { System::Web::IHttpHandler ^ get(); };
public System.Web.IHttpHandler PreviousHandler { get; }
member this.PreviousHandler : System.Web.IHttpHandler
Public ReadOnly Property PreviousHandler As IHttpHandler

Property Value

An IHttpHandler instance, or null if no previous handler was found.

Remarks

The PreviousHandler property corresponds to the last handler before the current request was executed.

Applies to

See also