Filter.Order Property
Gets the order in which the filter is applied.
Assembly: System.Web.Mvc (in System.Web.Mvc.dll)
Filters are run in the order of the filter type. Authorization filters run first and exception filters run last. Within each filter type, the Order value specifies the order. The execution order of filters with the same order and scope is undefined. OnActionExecuting, OnResultExecuting and OnAuthorization are run in forward order; OnActionExecuted, OnResultExecuting, and OnException are run in reverse order. For more information about ASP.NET MVC filters, see .
Show: