ReflectedAsyncActionDescriptor.BeginExecute Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Begins running the asynchronous action method by using the specified parameters and controller context.
public override IAsyncResult BeginExecute(System.Web.Mvc.ControllerContext controllerContext, System.Collections.Generic.IDictionary<string,object> parameters, AsyncCallback callback, object state);
override this.BeginExecute : System.Web.Mvc.ControllerContext * System.Collections.Generic.IDictionary<string, obj> * AsyncCallback * obj -> IAsyncResult
Public Overrides Function BeginExecute (controllerContext As ControllerContext, parameters As IDictionary(Of String, Object), callback As AsyncCallback, state As Object) As IAsyncResult
Parameters
- controllerContext
- ControllerContext
The controller context.
- parameters
- IDictionary<String,Object>
The parameters of the action method.
- callback
- AsyncCallback
The callback method.
- state
- Object
An object that contains information to be used by the callback method. This parameter can be null.
Returns
An object that contains the result of an asynchronous call.