ActionFilterAttribute.OnResultExecuted Method

Visual Studio 2010

Called by the MVC framework after the action result executes.

Namespace:  System.Web.Mvc
Assembly:  System.Web.Mvc (in System.Web.Mvc.dll)

No code example is currently available or this language may not be supported.

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: