ActionFilterAttribute::OnResultExecuted Method
Visual Studio 2010
Called by the MVC framework after the action result executes.
Assembly: System.Web.Mvc (in System.Web.Mvc.dll)
Parameters
- filterContext
- Type: System.Web.Mvc::ResultExecutedContext
The filter context.
Implements
IResultFilter::OnResultExecuted(ResultExecutedContext)The OnResultExecuting method is called just before the ActionResult instance that is returned by your action is invoked. The OnResultExecuted method is called just after the result is executed. These methods are useful for performing actions such as logging and output caching.
Community Additions
ADD
Show: