.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 | |
|---|---|---|
|
FilterProviderCollection() | Initializes a new instance of the FilterProviderCollection class. |
|
FilterProviderCollection(IList<IFilterProvider>) | Initializes a new instance of the FilterProviderCollection class using the filter providers collection. |
Properties
| Name | Description | |
|---|---|---|
|
Count | (Inherited from Collection<IFilterProvider>.) |
|
Item | (Inherited from Collection<IFilterProvider>.) |
|
Items | (Inherited from Collection<IFilterProvider>.) |
Methods
| Name | Description | |
|---|---|---|
|
Add | (Inherited from Collection<IFilterProvider>.) |
|
Clear | (Inherited from Collection<IFilterProvider>.) |
|
ClearItems | (Inherited from Collection<IFilterProvider>.) |
|
Contains | (Inherited from Collection<IFilterProvider>.) |
|
CopyTo | (Inherited from Collection<IFilterProvider>.) |
|
Equals | (Inherited from Object.) |
|
Finalize | (Inherited from Object.) |
|
GetEnumerator | (Inherited from Collection<IFilterProvider>.) |
|
GetFilters | Returns the collection of filter providers. |
|
GetHashCode | (Inherited from Object.) |
|
GetType | (Inherited from Object.) |
|
IndexOf | (Inherited from Collection<IFilterProvider>.) |
|
Insert | (Inherited from Collection<IFilterProvider>.) |
|
InsertItem | (Inherited from Collection<IFilterProvider>.) |
|
MemberwiseClone | (Inherited from Object.) |
|
Remove | (Inherited from Collection<IFilterProvider>.) |
|
RemoveAt | (Inherited from Collection<IFilterProvider>.) |
|
RemoveItem | (Inherited from Collection<IFilterProvider>.) |
|
SetItem | (Inherited from Collection<IFilterProvider>.) |
|
ToString | (Inherited from Object.) |
Explicit Interface Implementations
| Name | Description | |
|---|---|---|
|
IList.Add | (Inherited from Collection<IFilterProvider>.) |
|
IList.Contains | (Inherited from Collection<IFilterProvider>.) |
|
ICollection.CopyTo | (Inherited from Collection<IFilterProvider>.) |
|
IEnumerable.GetEnumerator | (Inherited from Collection<IFilterProvider>.) |
|
IList.IndexOf | (Inherited from Collection<IFilterProvider>.) |
|
IList.Insert | (Inherited from Collection<IFilterProvider>.) |
|
IList.IsFixedSize | (Inherited from Collection<IFilterProvider>.) |
|
ICollection<T>.IsReadOnly | (Inherited from Collection<IFilterProvider>.) |
|
IList.IsReadOnly | (Inherited from Collection<IFilterProvider>.) |
|
ICollection.IsSynchronized | (Inherited from Collection<IFilterProvider>.) |
|
IList.Item | (Inherited from Collection<IFilterProvider>.) |
|
IList.Remove | (Inherited from Collection<IFilterProvider>.) |
|
ICollection.SyncRoot | (Inherited from Collection<IFilterProvider>.) |
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