This topic has not yet been rated - Rate this topic

Controller.OnActionExecuted Method

Called after the action method is invoked.

Namespace:  System.Web.Mvc
Assembly:  System.Web.Mvc (in System.Web.Mvc.dll)
protected virtual void OnActionExecuted(
	ActionExecutedContext filterContext
)

Parameters

filterContext
Type: System.Web.Mvc.ActionExecutedContext
Information about the current request and action.

If this method is overridden in a derived Controller class, it will be called for every action method in the class. For more flexibility, derive a class from ActionFilterAttribute and override this method in the derived ActionFilterAttribute class.

The following example shows how to trace the action name after the action method runs.

public override void OnActionExecuted(ActionExecutedContext ctx) {
    base.OnActionExecuted(ctx);
    ctx.HttpContext.Trace.Write("Log: OnActionExecuted",
        "After " +
        ctx.ActionDescriptor.ActionName);
}

Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.