AsyncControllerActionInvoker.BeginInvokeAction Method

Invokes the asynchronous action method by using the specified controller context, action name, callback method, and state.

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

Syntax

'Declaration
Public Overridable Function BeginInvokeAction ( _
    controllerContext As ControllerContext, _
    actionName As String, _
    callback As AsyncCallback, _
    state As Object _
) As IAsyncResult
public virtual IAsyncResult BeginInvokeAction(
    ControllerContext controllerContext,
    string actionName,
    AsyncCallback callback,
    Object state
)
public:
virtual IAsyncResult^ BeginInvokeAction(
    ControllerContext^ controllerContext, 
    String^ actionName, 
    AsyncCallback^ callback, 
    Object^ state
)

Parameters

  • state
    Type: System.Object
    An object that contains information to be used by the callback method. This parameter can be null reference (Nothing in Visual Basic).

Return Value

Type: System.IAsyncResult
An object that contains the result of an asynchronous operation.

Implements

IAsyncActionInvoker.BeginInvokeAction(ControllerContext, String, AsyncCallback, Object)

See Also

Reference

AsyncControllerActionInvoker Class

System.Web.Mvc.Async Namespace