ActionFilterAttribute.OnActionExecuted Method
Called by the ASP.NET MVC framework after the action method executes.
Namespace: System.Web.Mvc
Assembly: System.Web.Mvc (in System.Web.Mvc.dll)
'Declaration Public Overridable Sub OnActionExecuted ( _ filterContext As ActionExecutedContext _ ) 'Usage Dim instance As ActionFilterAttribute Dim filterContext As ActionExecutedContext instance.OnActionExecuted(filterContext)
Parameters
- filterContext
- Type: System.Web.Mvc.ActionExecutedContext
The filter context.
Implements
IActionFilter.OnActionExecuted(ActionExecutedContext)The ASP.NET MVC framework will call the OnActionExecuting method of your action filter before it calls the action method that is marked with your action filter attribute. Similarly, the framework will call the OnActionExecuted method after the action method has finished.
Show: