HttpContext.Handler Property
.NET Framework 3.0
Gets or sets the IHttpHandler object responsible for processing the HTTP request.
Namespace: System.Web
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
/** @property */ public IHttpHandler get_Handler () /** @property */ public void set_Handler (IHttpHandler value)
public function get Handler () : IHttpHandler public function set Handler (value : IHttpHandler)
Not applicable.
Property Value
An IHttpHandler responsible for processing the HTTP request.The Handler property contains a reference to the handler that processes the HTTP request. The handler can be specified by using the httpHandlers Element (ASP.NET Settings Schema), or by using a custom handler defined in user code. For more information about handlers, see Introduction to HTTP Handlers.
The reference to the Handler property will remain the same even after the current page has been changed by a server-side method, such as the Execute method or the Transfer method.
Community Additions
ADD
Show: