AsyncControllerActionInvoker.BeginInvokeAction Method (ControllerContext, String, AsyncCallback, Object)
Invokes the asynchronous action method by using the specified controller context, action name, callback method, and state.
Assembly: System.Web.Mvc (in System.Web.Mvc.dll)
Public Overridable Function BeginInvokeAction ( controllerContext As ControllerContext, actionName As String, callback As AsyncCallback, state As Object ) As IAsyncResult
Parameters
- controllerContext
-
Type:
System.Web.Mvc.ControllerContext
The controller context.
- actionName
-
Type:
System.String
The name of the action.
- callback
-
Type:
System.AsyncCallback
The callback method.
- state
-
Type:
System.Object
An object that contains information to be used by the callback method. This parameter can be null.
Return Value
Type: System.IAsyncResultAn object that contains the result of an asynchronous operation.
Implements
Show: