MvcHandler.IHttpHandler.ProcessRequest Method
Enables processing of HTTP Web requests by a custom HTTP handler that implements the IHttpHandler interface.
Namespace: System.Web.Mvc
Assembly: System.Web.Mvc (in System.Web.Mvc.dll)
Syntax
'Declaration
Private Sub ProcessRequest ( _
httpContext As HttpContext _
) Implements IHttpHandler.ProcessRequest
void IHttpHandler.ProcessRequest(
HttpContext httpContext
)
private:
virtual void ProcessRequest(
HttpContext^ httpContext
) sealed = IHttpHandler::ProcessRequest
Parameters
- httpContext
Type: System.Web.HttpContext
An HttpContext object that provides references to the intrinsic server objects (for example, Request, Response, Session, and Server) that are used to service HTTP requests.
Implements
IHttpHandler.ProcessRequest(HttpContext)
Remarks
This member is an explicit interface member implementation. It can be used only when the MvcHandler instance is cast to an IHttpHandler interface.