FilterProviderCollection Constructors

Definition

Overloads

FilterProviderCollection()

Initializes a new instance of the FilterProviderCollection class.

FilterProviderCollection(IList<IFilterProvider>)

Initializes a new instance of the FilterProviderCollection class with specified list of filter provider.

FilterProviderCollection()

Initializes a new instance of the FilterProviderCollection class.

public FilterProviderCollection ();
Public Sub New ()

Applies to

FilterProviderCollection(IList<IFilterProvider>)

Initializes a new instance of the FilterProviderCollection class with specified list of filter provider.

public FilterProviderCollection (System.Collections.Generic.IList<System.Web.Mvc.IFilterProvider> providers);
new System.Web.Mvc.FilterProviderCollection : System.Collections.Generic.IList<System.Web.Mvc.IFilterProvider> -> System.Web.Mvc.FilterProviderCollection
Public Sub New (providers As IList(Of IFilterProvider))

Parameters

providers
IList<IFilterProvider>

The list of filter providers.

Applies to