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 to invoke the action in the current controller context.
Namespace: System.Web.Mvc
Assembly: System.Web.Mvc (in System.Web.Mvc.dll)
Syntax
protected virtual IAsyncResult BeginExecuteCore(
AsyncCallback callback,
object state
)
protected:
virtual IAsyncResult^ BeginExecuteCore(
AsyncCallback^ callback,
Object^ state
)
abstract BeginExecuteCore :
callback:AsyncCallback *
state:Object -> IAsyncResult
override BeginExecuteCore :
callback:AsyncCallback *
state:Object -> IAsyncResult
Protected Overridable Function BeginExecuteCore (
callback As AsyncCallback,
state As Object
) As IAsyncResult
Parameters
callback
Type: System.AsyncCallbackThe 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