AsyncController.IAsyncController.BeginExecute Method
Visual Studio 2010
Called by ASP.NET to begin the execution of an asynchronous action method.
Assembly: System.Web.Mvc (in System.Web.Mvc.dll)
'Declaration Private Function BeginExecute ( _ requestContext As RequestContext, _ callback As AsyncCallback, _ state As Object _ ) As IAsyncResult Implements IAsyncController.BeginExecute
Parameters
- requestContext
- Type: System.Web.Routing.RequestContext
The request context.
- callback
- Type: System.AsyncCallback
The asynchronous callback method.
- state
- Type: System.Object
An object that contains information to be used by the callback method. This parameter can be Nothing.
Implements
IAsyncController.BeginExecute(RequestContext, AsyncCallback, Object)This method is called by ASP.NET while it is processing an asynchronous action method. It cannot be called directly.
This member is an explicit interface member implementation. It can be used only when the AsyncController instance is cast to an IAsyncResult interface.
Community Additions
ADD
Show: