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.
Invokes the asynchronous action method by using the specified controller context, filters, action descriptor, parameters, callback method, and state.
Namespace: System.Web.Mvc.Async
Assembly: System.Web.Mvc (in System.Web.Mvc.dll)
Syntax
'Declaration
Protected Friend Overridable Function BeginInvokeActionMethodWithFilters ( _
controllerContext As ControllerContext, _
filters As IList(Of IActionFilter), _
actionDescriptor As ActionDescriptor, _
parameters As IDictionary(Of String, Object), _
callback As AsyncCallback, _
state As Object _
) As IAsyncResult
protected internal virtual IAsyncResult BeginInvokeActionMethodWithFilters(
ControllerContext controllerContext,
IList<IActionFilter> filters,
ActionDescriptor actionDescriptor,
IDictionary<string, Object> parameters,
AsyncCallback callback,
Object state
)
protected public:
virtual IAsyncResult^ BeginInvokeActionMethodWithFilters(
ControllerContext^ controllerContext,
IList<IActionFilter^>^ filters,
ActionDescriptor^ actionDescriptor,
IDictionary<String^, Object^>^ parameters,
AsyncCallback^ callback,
Object^ state
)
Parameters
- controllerContext
Type: System.Web.Mvc.ControllerContext
The controller context.
- filters
Type: System.Collections.Generic.IList<IActionFilter>
The filters.
- actionDescriptor
Type: System.Web.Mvc.ActionDescriptor
The action descriptor.
- parameters
Type: System.Collections.Generic.IDictionary<String, Object>
The parameters for the asynchronous action method.
- callback
Type: System.AsyncCallback
The callback method.
- state
Type: System.Object
An object that contains information to be used by the callback method. This parameter can be null reference (Nothing in Visual Basic).
Return Value
Type: System.IAsyncResult
An object that contains the result of an asynchronous operation.