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
'Usage
Dim instance As MvcHandler 
Dim httpContext As HttpContext 

CType(instance, IHttpHandler).ProcessRequest(httpContext)
void IHttpHandler.ProcessRequest(
    HttpContext httpContext
)
private:
virtual void ProcessRequest(
    HttpContext^ httpContext
) sealed = IHttpHandler::ProcessRequest
private abstract ProcessRequest : 
        httpContext:HttpContext -> unit  
private override ProcessRequest : 
        httpContext:HttpContext -> unit
JScript supports the use of explicit interface implementations, but not the declarations of new ones.

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.

See Also

Reference

MvcHandler Class

System.Web.Mvc Namespace