FilterScope Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Defines values that specify the order in which ASP.NET MVC filters run within the same filter type and filter order.
public enum FilterScope
type FilterScope =
Public Enum FilterScope
- Inheritance
-
FilterScope
Fields
Name | Value | Description |
---|---|---|
First | 0 | Specifies first. |
Global | 10 | Specifies an order before Controller and after First. |
Controller | 20 | |
Action | 30 | Specifies an order before Last and after Controller. |
Last | 100 | Specifies last. |