HttpApplication.IHttpHandler.ProcessRequest(HttpContext) Method

Definition

Enables processing of HTTP Web requests by a custom HTTP handler that implements the IHttpHandler interface.

 virtual void System.Web.IHttpHandler.ProcessRequest(System::Web::HttpContext ^ context) = System::Web::IHttpHandler::ProcessRequest;
void IHttpHandler.ProcessRequest (System.Web.HttpContext context);
abstract member System.Web.IHttpHandler.ProcessRequest : System.Web.HttpContext -> unit
override this.System.Web.IHttpHandler.ProcessRequest : System.Web.HttpContext -> unit
Sub ProcessRequest (context As HttpContext) Implements IHttpHandler.ProcessRequest

Parameters

context
HttpContext

An HttpContext that provides references to the intrinsic server objects that are used to service HTTP requests.

Implements

Exceptions

In all cases.

Remarks

Classes that inherit the IHttpModule and IHttpHandler interfaces are provided as a reference to an HttpContext object for the current HTTP request. The object provides access to the intrinsic Request, Response, and Server objects for the request.

Applies to