Enum FilterScope
Defines values that specify the order in which ASP.NET MVC filters run within the same filter type and filter order.
public enum FilterScope
Fields
Action = 30Specifies an order before Last and after Controller.
Controller = 20First = 0Specifies first.
Global = 10Specifies an order before Controller and after First.
Last = 100Specifies last.