ControllerActionInvoker.InvokeActionMethodWithFilters Method
Invokes the specified action method by using the specified parameters, controller context, and action filters.
Namespace: System.Web.Mvc
Assembly: System.Web.Mvc (in System.Web.Mvc.dll)
Syntax
'Declaration
Protected Overridable Function InvokeActionMethodWithFilters ( _
controllerContext As ControllerContext, _
filters As IList(Of IActionFilter), _
actionDescriptor As ActionDescriptor, _
parameters As IDictionary(Of String, Object) _
) As ActionExecutedContext
protected virtual ActionExecutedContext InvokeActionMethodWithFilters(
ControllerContext controllerContext,
IList<IActionFilter> filters,
ActionDescriptor actionDescriptor,
IDictionary<string, Object> parameters
)
protected:
virtual ActionExecutedContext^ InvokeActionMethodWithFilters(
ControllerContext^ controllerContext,
IList<IActionFilter^>^ filters,
ActionDescriptor^ actionDescriptor,
IDictionary<String^, Object^>^ parameters
)
Parameters
- controllerContext
Type: System.Web.Mvc.ControllerContext
The controller context.
- filters
Type: System.Collections.Generic.IList<IActionFilter>
The action filters.
- actionDescriptor
Type: System.Web.Mvc.ActionDescriptor
The action descriptor.
- parameters
Type: System.Collections.Generic.IDictionary<String, Object>
The parameters.
Return Value
Type: System.Web.Mvc.ActionExecutedContext
The context for the ActionExecuted method of the ActionFilterAttribute class.