MvcHttpHandler.BeginProcessRequest Method

 

Called by ASP.NET to begin asynchronous request processing.

Namespace:   System.Web.Mvc
Assembly:  System.Web.Mvc (in System.Web.Mvc.dll)

NameDescription
System_CAPS_protmethodBeginProcessRequest(HttpContext, AsyncCallback, Object)

Called by ASP.NET to begin asynchronous request processing.

System_CAPS_protmethodBeginProcessRequest(HttpContextBase, AsyncCallback, Object)

Called by ASP.NET to begin asynchronous request processing.

Return to top

MvcHttpHandler.BeginProcessRequest Method (HttpContext, AsyncCallback, Object)

Called by ASP.NET to begin asynchronous request processing.

Protected Overridable Function BeginProcessRequest (
	httpContext As HttpContext,
	callback As AsyncCallback,
	state As Object
) As IAsyncResult

Parameters

httpContext
Type: System.Web.HttpContext

The HTTP context.

callback
Type: System.AsyncCallback

The asynchronous callback method.

state
Type: System.Object

The state.

Return Value

Type: System.IAsyncResult

The status of the asynchronous call.

For more information about the differences between this method and the one in MvcHandler, see the "Remarks" sections of the MvcHttpHandler class overview.

Return to top

MvcHttpHandler.BeginProcessRequest Method (HttpContextBase, AsyncCallback, Object)

Called by ASP.NET to begin asynchronous request processing.

Protected Friend Overridable Function BeginProcessRequest (
	httpContext As HttpContextBase,
	callback As AsyncCallback,
	state As Object
) As IAsyncResult

Parameters

httpContext
Type: System.Web.HttpContextBase

The base HTTP context.

callback
Type: System.AsyncCallback

The asynchronous callback method.

state
Type: System.Object

The state.

Return Value

Type: System.IAsyncResult

The status of the asynchronous call.

For more information about the differences between this method and the one in MvcHandler, see the "Remarks" sections of the MvcHttpHandler class overview.

Return to top
Show: