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)

'Declaration
Private Sub ProcessRequest ( _
	httpContext As HttpContext _
) Implements IHttpHandler.ProcessRequest
'Usage
Dim instance As MvcHandler 
Dim httpContext As HttpContext 

CType(instance, IHttpHandler).ProcessRequest(httpContext)

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)

This member is an explicit interface member implementation. It can be used only when the MvcHandler instance is cast to an IHttpHandler interface.

Show: