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)

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

value = instance.Order

Property Value

Type: System.Int32
The filter order.

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.

Show: