HttpContext.PreviousHandler 属性
定义
获取父处理程序的 IHttpHandler 对象。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
属性值
IHttpHandler 实例,如果未找到上一个处理程序,则为 null
。An IHttpHandler instance, or null
if no previous handler was found.
注解
在 PreviousHandler 执行当前请求之前,属性对应于最后一个处理程序。The PreviousHandler property corresponds to the last handler before the current request was executed.