Share via


IMvcFilter.Order Property

When implemented in a class, gets the filter order.

Namespace:  System.Web.Mvc
Assembly:  System.Web.Mvc (in System.Web.Mvc.dll)

Syntax

'Declaration
ReadOnly Property Order As Integer
'Usage
Dim instance As IMvcFilter
Dim value As Integer

value = instance.Order
int Order { get; }
property int Order {
    int get ();
}
function get Order () : int

Property Value

Type: System.Int32
The filter order.

Remarks

Filters are ordered first by type, then by order. Filters of the same time are sorted by the Order property. For more information, see Filtering in ASP.NET MVC.

See Also

Reference

IMvcFilter Interface

System.Web.Mvc Namespace

Other Resources

Filtering in ASP.NET MVC