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.
Begins execution of the specified request context
Namespace: System.Web.Mvc
Assembly: System.Web.Mvc (in System.Web.Mvc.dll)
Syntax
protected virtual IAsyncResult BeginExecute(
RequestContext requestContext,
AsyncCallback callback,
object state
)
protected:
virtual IAsyncResult^ BeginExecute(
RequestContext^ requestContext,
AsyncCallback^ callback,
Object^ state
)
abstract BeginExecute :
requestContext:RequestContext *
callback:AsyncCallback *
state:Object -> IAsyncResult
override BeginExecute :
requestContext:RequestContext *
callback:AsyncCallback *
state:Object -> IAsyncResult
Protected Overridable Function BeginExecute (
requestContext As RequestContext,
callback As AsyncCallback,
state As Object
) As IAsyncResult
Parameters
requestContext
Type: System.Web.Routing.RequestContextThe request context.
callback
Type: System.AsyncCallbackThe asynchronous callback.
state
Type: System.ObjectThe state.
Return Value
Type: System.IAsyncResult
Returns an IAsyncController instance.
See Also
Controller Class
System.Web.Mvc Namespace
Return to top