HttpApplication.IHttpHandler.ProcessRequest(HttpContext) Method     
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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 -> unitSub ProcessRequest (context As HttpContext) Implements IHttpHandler.ProcessRequestParameters
- 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.