IAsyncActionInvoker.BeginInvokeAction Method

Invokes the specified action.

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

'Declaration
Function BeginInvokeAction ( _
	controllerContext As ControllerContext, _
	actionName As String, _
	callback As AsyncCallback, _
	state As Object _
) As IAsyncResult
'Usage
Dim instance As IAsyncActionInvoker 
Dim controllerContext As ControllerContext 
Dim actionName As String 
Dim callback As AsyncCallback 
Dim state As Object 
Dim returnValue As IAsyncResult 

returnValue = instance.BeginInvokeAction(controllerContext, _
	actionName, callback, state)

Parameters

controllerContext
Type: System.Web.Mvc.ControllerContext
The controller context.
actionName
Type: System.String
The name of the asynchronous action.
callback
Type: System.AsyncCallback
The callback method.
state
Type: System.Object
The state.

Return Value

Type: System.IAsyncResult
The status of the asynchronous result.
Show: