ActionFilterAttribute.OnResultExecuting Method
Called by the ASP.NET MVC framework before the action result executes.
Namespace: System.Web.Mvc
Assembly: System.Web.Mvc (in System.Web.Mvc.dll)
abstract OnResultExecuting : filterContext:ResultExecutingContext -> unit override OnResultExecuting : filterContext:ResultExecutingContext -> unit
Parameters
- filterContext
- Type: System.Web.Mvc.ResultExecutingContext
The filter context.
Implements
IResultFilter.OnResultExecuting(ResultExecutingContext)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.
Show: