MvcHttpHandler.BeginProcessRequest Method (HttpContextBase, AsyncCallback, Object)

Called by ASP.NET to begin asynchronous request processing.

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

'Declaration
Protected Friend Overridable Function BeginProcessRequest ( _
	httpContext As HttpContextBase, _
	callback As AsyncCallback, _
	state As Object _
) As IAsyncResult
'Usage
Dim httpContext As HttpContextBase 
Dim callback As AsyncCallback 
Dim state As Object 
Dim returnValue As IAsyncResult 

returnValue = Me.BeginProcessRequest(httpContext, _
	callback, state)

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.

Show: