AsyncControllerActionInvoker.BeginInvokeActionMethodWithFilters Method

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)

abstract BeginInvokeActionMethodWithFilters : 
        controllerContext:ControllerContext * 
        filters:IList<IActionFilter> * 
        actionDescriptor:ActionDescriptor * 
        parameters:IDictionary<string, Object> * 
        callback:AsyncCallback * 
        state:Object -> IAsyncResult  
override BeginInvokeActionMethodWithFilters : 
        controllerContext:ControllerContext * 
        filters:IList<IActionFilter> * 
        actionDescriptor:ActionDescriptor * 
        parameters:IDictionary<string, Object> * 
        callback:AsyncCallback * 
        state:Object -> IAsyncResult

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 a null reference (Nothing in Visual Basic).

Return Value

Type: System.IAsyncResult
An object that contains the result of an asynchronous operation.
Show: