MvcHttpHandler Class
Verifies and processes an HTTP request.
Namespace: System.Web.Mvc
Assembly: System.Web.Mvc (in System.Web.Mvc.dll)
The MvcHttpHandler type exposes the following members.
Name | Description | |
---|---|---|
![]() | IsReusable | (Inherited from UrlRoutingHandler.) |
![]() | RouteCollection | (Inherited from UrlRoutingHandler.) |
Name | Description | |
---|---|---|
![]() | BeginProcessRequest(HttpContext, AsyncCallback, Object) | Called by ASP.NET to begin asynchronous request processing. |
![]() | BeginProcessRequest(HttpContextBase, AsyncCallback, Object) | Called by ASP.NET to begin asynchronous request processing. |
![]() | EndProcessRequest | Called by ASP.NET when asynchronous request processing has ended. |
![]() | Equals | (Inherited from Object.) |
![]() | Finalize | (Inherited from Object.) |
![]() | GetHashCode | (Inherited from Object.) |
![]() | GetType | (Inherited from Object.) |
![]() | MemberwiseClone | (Inherited from Object.) |
![]() | ProcessRequest(HttpContext) | (Inherited from UrlRoutingHandler.) |
![]() | ProcessRequest(HttpContextBase) | (Inherited from UrlRoutingHandler.) |
![]() | ToString | (Inherited from Object.) |
![]() | VerifyAndProcessRequest | Verifies and processes an HTTP request. (Overrides UrlRoutingHandler.VerifyAndProcessRequest(IHttpHandler, HttpContextBase).) |
Name | Description | |
---|---|---|
![]() ![]() | IHttpAsyncHandler.BeginProcessRequest | Called by ASP.NET to begin asynchronous request processing. |
![]() ![]() | IHttpAsyncHandler.EndProcessRequest | Called by ASP.NET when asynchronous request processing has ended. |
![]() ![]() | IHttpHandler.IsReusable | (Inherited from UrlRoutingHandler.) |
![]() ![]() | IHttpHandler.ProcessRequest | (Inherited from UrlRoutingHandler.) |
MVC includes the following handler types:
MvcHandler. This handler is responsible for initiating the ASP.NET pipeline for an MVC application. It receives a Controller instance from the MVC controller factory; this controller handles further processing of the request. Note that even though MvcHandler implements IHttpHandler, it cannot be mapped as a handler (for example, to the .mvc file-name extension) because the class does not support a parameterless constructor. (Its only constructor requires a RequestContext object.)
MvcRouteHandler. This class implements IRouteHandler, therefore it can integrate with ASP.NET routing. The MvcRouteHandler class associates the route with an MvcHandler instance. A MvcRouteHandler instance is registered with routing when you use the MapRoute method. When the MvcRouteHandler class is invoked, the class generates an MvcHandler instance using the current RequestContext instance. It then delegates control to the new MvcHandler instance.
MvcHttpHandler. This handler is used to facilitate direct handler mapping without going through the routing module. This is useful if you want to map a file-name extension such as .mvc directly to an MVC handler. Internally, MvcHttpHandler performs the same tasks that ASP.NET routing ordinarily performs (going through MvcRouteHandler and MvcHandler). However, it performs these tasks as a handler instead of as a module. This handler is not typically used when the UrlRoutingModule is enabled for all requests.