Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

HttpContext::Handler Property

 

Gets or sets the IHttpHandler object responsible for processing the HTTP request.

Namespace:   System.Web
Assembly:  System.Web (in System.Web.dll)

public:
property IHttpHandler^ Handler {
	IHttpHandler^ get();
	void set(IHttpHandler^ value);
}

Property Value

Type: System.Web::IHttpHandler^

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 element, or by using a custom handler defined in user code. For more information about handlers, see HTTP Handlers and HTTP Modules Overview.

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.

.NET Framework
Available since 1.1
Return to top
Show:
© 2017 Microsoft