MvcFilter Constructors

Definition

Overloads

MvcFilter()

Initializes a new instance of the MvcFilter class.

MvcFilter(Boolean, Int32)

Initializes a new instance of the MvcFilter class and specifies the order of filters and whether multiple filters are allowed.

MvcFilter()

Initializes a new instance of the MvcFilter class.

protected MvcFilter ();
Protected Sub New ()

Applies to

MvcFilter(Boolean, Int32)

Initializes a new instance of the MvcFilter class and specifies the order of filters and whether multiple filters are allowed.

protected MvcFilter (bool allowMultiple, int order);
new System.Web.Mvc.MvcFilter : bool * int -> System.Web.Mvc.MvcFilter
Protected Sub New (allowMultiple As Boolean, order As Integer)

Parameters

allowMultiple
Boolean

true to specify that multiple filters of the same type are allowed; otherwise, false.

order
Int32

The filter order.

Applies to