FilterProviderCollection Class (System.Web.Mvc)

Switch View :
ScriptFree
.NET Framework Class Library
FilterProviderCollection Class

Represents the collection of filter providers for the application.

Inheritance Hierarchy

System.Object
  System.Collections.ObjectModel.Collection<IFilterProvider>
    System.Web.Mvc.FilterProviderCollection

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

Visual Basic (Declaration)
Public Class FilterProviderCollection _
	Inherits Collection(Of IFilterProvider)
Visual Basic (Usage)
Dim instance As FilterProviderCollection
C#
public class FilterProviderCollection : Collection<IFilterProvider>
Visual C++
public ref class FilterProviderCollection : public Collection<IFilterProvider^>
JScript
public class FilterProviderCollection extends Collection<IFilterProvider>

The FilterProviderCollection type exposes the following members.

Constructors

  Name Description
Public method FilterProviderCollection() Initializes a new instance of the FilterProviderCollection class.
Public method FilterProviderCollection(IList<IFilterProvider>) Initializes a new instance of the FilterProviderCollection class using the filter providers collection.
Top
Properties

  Name Description
Public property Count (Inherited from Collection<IFilterProvider>.)
Public property Item (Inherited from Collection<IFilterProvider>.)
Protected property Items (Inherited from Collection<IFilterProvider>.)
Top
Methods

  Name Description
Public method Add (Inherited from Collection<IFilterProvider>.)
Public method Clear (Inherited from Collection<IFilterProvider>.)
Protected method ClearItems (Inherited from Collection<IFilterProvider>.)
Public method Contains (Inherited from Collection<IFilterProvider>.)
Public method CopyTo (Inherited from Collection<IFilterProvider>.)
Public method Equals (Inherited from Object.)
Protected method Finalize (Inherited from Object.)
Public method GetEnumerator (Inherited from Collection<IFilterProvider>.)
Public method GetFilters Returns the collection of filter providers.
Public method GetHashCode (Inherited from Object.)
Public method GetType (Inherited from Object.)
Public method IndexOf (Inherited from Collection<IFilterProvider>.)
Public method Insert (Inherited from Collection<IFilterProvider>.)
Protected method InsertItem (Inherited from Collection<IFilterProvider>.)
Protected method MemberwiseClone (Inherited from Object.)
Public method Remove (Inherited from Collection<IFilterProvider>.)
Public method RemoveAt (Inherited from Collection<IFilterProvider>.)
Protected method RemoveItem (Inherited from Collection<IFilterProvider>.)
Protected method SetItem (Inherited from Collection<IFilterProvider>.)
Public method ToString (Inherited from Object.)
Top
Explicit Interface Implementations

  Name Description
Explicit interface implemetation Private method IList.Add (Inherited from Collection<IFilterProvider>.)
Explicit interface implemetation Private method IList.Contains (Inherited from Collection<IFilterProvider>.)
Explicit interface implemetation Private method ICollection.CopyTo (Inherited from Collection<IFilterProvider>.)
Explicit interface implemetation Private method IEnumerable.GetEnumerator (Inherited from Collection<IFilterProvider>.)
Explicit interface implemetation Private method IList.IndexOf (Inherited from Collection<IFilterProvider>.)
Explicit interface implemetation Private method IList.Insert (Inherited from Collection<IFilterProvider>.)
Explicit interface implemetation Private property IList.IsFixedSize (Inherited from Collection<IFilterProvider>.)
Explicit interface implemetation Private property ICollection<T>.IsReadOnly (Inherited from Collection<IFilterProvider>.)
Explicit interface implemetation Private property IList.IsReadOnly (Inherited from Collection<IFilterProvider>.)
Explicit interface implemetation Private property ICollection.IsSynchronized (Inherited from Collection<IFilterProvider>.)
Explicit interface implemetation Private property IList.Item (Inherited from Collection<IFilterProvider>.)
Explicit interface implemetation Private method IList.Remove (Inherited from Collection<IFilterProvider>.)
Explicit interface implemetation Private property ICollection.SyncRoot (Inherited from Collection<IFilterProvider>.)
Top
Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
See Also

Reference

Other Resources