Table of Contents

Enum FilterScope

Namespace
System.Web.Mvc
Assembly
System.Web.Mvc.dll

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 = 30

Specifies an order before Last and after Controller.

Controller = 20

Specifies an order before Action and after Global.

First = 0

Specifies first.

Global = 10

Specifies an order before Controller and after First.

Last = 100

Specifies last.