TaskAsyncActionDescriptor.BeginExecute Method
Invokes the asynchronous action method using the specified parameters, controller context callback and state.
Namespace: System.Web.Mvc.Async
Assembly: System.Web.Mvc (in System.Web.Mvc.dll)
abstract BeginExecute : controllerContext:ControllerContext * parameters:IDictionary<string, Object> * callback:AsyncCallback * state:Object -> IAsyncResult override BeginExecute : controllerContext:ControllerContext * parameters:IDictionary<string, Object> * callback:AsyncCallback * state:Object -> IAsyncResult
Parameters
- controllerContext
- Type: System.Web.Mvc.ControllerContext
The controller context.
- parameters
- Type: System.Collections.Generic.IDictionary(String, Object)
The parameters of the action method.
- callback
- Type: System.AsyncCallback
The optional callback method.
- state
- Type: System.Object
An object that contains information to be used by the callback method. This parameter can be a null reference (Nothing in Visual Basic).
Show: