ControllerActionInvoker.InvokeActionMethodWithFilters Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Invokes the specified action method by using the specified parameters, controller context, and action filters.
protected virtual System.Web.Mvc.ActionExecutedContext InvokeActionMethodWithFilters (System.Web.Mvc.ControllerContext controllerContext, System.Collections.Generic.IList<System.Web.Mvc.IActionFilter> filters, System.Web.Mvc.ActionDescriptor actionDescriptor, System.Collections.Generic.IDictionary<string,object> parameters);
abstract member InvokeActionMethodWithFilters : System.Web.Mvc.ControllerContext * System.Collections.Generic.IList<System.Web.Mvc.IActionFilter> * System.Web.Mvc.ActionDescriptor * System.Collections.Generic.IDictionary<string, obj> -> System.Web.Mvc.ActionExecutedContext
override this.InvokeActionMethodWithFilters : System.Web.Mvc.ControllerContext * System.Collections.Generic.IList<System.Web.Mvc.IActionFilter> * System.Web.Mvc.ActionDescriptor * System.Collections.Generic.IDictionary<string, obj> -> System.Web.Mvc.ActionExecutedContext
Protected Overridable Function InvokeActionMethodWithFilters (controllerContext As ControllerContext, filters As IList(Of IActionFilter), actionDescriptor As ActionDescriptor, parameters As IDictionary(Of String, Object)) As ActionExecutedContext
Parameters
- controllerContext
- ControllerContext
The controller context.
- filters
- IList<IActionFilter>
The action filters.
- actionDescriptor
- ActionDescriptor
The action descriptor.
- parameters
- IDictionary<String,Object>
The parameters.
Returns
The context for the ActionExecuted method of the ActionFilterAttribute class.