Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
This method calls the BeginExecute method.
Namespace: System.Web.Mvc
Assembly: System.Web.Mvc (in System.Web.Mvc.dll)
Syntax
IAsyncResult IAsyncController.BeginExecute(
RequestContext requestContext,
AsyncCallback callback,
object state
)
private:
virtual IAsyncResult^ BeginExecute(
RequestContext^ requestContext,
AsyncCallback^ callback,
Object^ state
) sealed = IAsyncController::BeginExecute
private abstract BeginExecute :
requestContext:RequestContext *
callback:AsyncCallback *
state:Object -> IAsyncResult
private override BeginExecute :
requestContext:RequestContext *
callback:AsyncCallback *
state:Object -> IAsyncResult
Private Function BeginExecute (
requestContext As RequestContext,
callback As AsyncCallback,
state As Object
) As IAsyncResult
Implements IAsyncController.BeginExecute
Parameters
requestContext
Type: System.Web.Routing.RequestContextThe request context.
callback
Type: System.AsyncCallbackThe asynchronous callback.
state
Type: System.ObjectThe state of the object.
Return Value
Type: System.IAsyncResult
The result of the operation.
Implements
IAsyncController.BeginExecute(RequestContext, AsyncCallback, Object)
See Also
Controller Class
System.Web.Mvc Namespace
Return to top