MvcHttpHandler Class

Definition

Verifies and processes an HTTP request.

public class MvcHttpHandler : System.Web.Routing.UrlRoutingHandler, System.Web.IHttpAsyncHandler, System.Web.IHttpHandler, System.Web.SessionState.IRequiresSessionState
type MvcHttpHandler = class
    inherit UrlRoutingHandler
    interface IHttpAsyncHandler
    interface IHttpHandler
    interface IRequiresSessionState
Public Class MvcHttpHandler
Inherits UrlRoutingHandler
Implements IHttpAsyncHandler, IHttpHandler, IRequiresSessionState
Inheritance
MvcHttpHandler
Implements

Constructors

Name Description
MvcHttpHandler()

Initializes a new instance of the MvcHttpHandler class.

Methods

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(IAsyncResult)

Called by ASP.NET when asynchronous request processing has ended.

VerifyAndProcessRequest(IHttpHandler, HttpContextBase)

Verifies and processes an HTTP request.

Explicit Interface Implementations

Name Description
IHttpAsyncHandler.BeginProcessRequest(HttpContext, AsyncCallback, Object)

Called by ASP.NET to begin asynchronous request processing.

IHttpAsyncHandler.EndProcessRequest(IAsyncResult)

Called by ASP.NET when asynchronous request processing has ended.

Applies to