Filter.Scope Property

Gets the scope ordering of the filter.

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

Syntax

'Declaration
Public Property Scope As FilterScope
'Usage
Dim instance As Filter
Dim value As FilterScope

value = instance.Scope

instance.Scope = value
public FilterScope Scope { get; protected set; }
public:
property FilterScope Scope {
    FilterScope get ();
    protected: void set (FilterScope value);
}
function get Scope () : FilterScope
protected function set Scope (value : FilterScope)

Property Value

Type: System.Web.Mvc.FilterScope
The scope ordering of the filter.

Remarks

Scope provides a third level of ordering for filters. For more information about ASP.NET MVC filters, see Filtering in ASP.NET MVC.

See Also

Reference

Filter Class

System.Web.Mvc Namespace