Class ComponentFilterCollection<TFilter>
Collection of component filters.
public sealed class ComponentFilterCollection<TFilter> where TFilter : IComponentFilter
Type Parameters
TFilter
- Inheritance
-
objectComponentFilterCollection<TFilter>
- Extension Methods
Methods
Add(TFilter)
Adds a component filter.
public void Add(TFilter filter)
Parameters
filter
TFilterComponent filter to add.
Exceptions
- ArgumentNullException
Throws when
filter
isnull
.
GetEnumerator()
Returns an enumerator that iterates through the collection.
public IEnumerator<TFilter> GetEnumerator()
Returns
- IEnumerator<TFilter>
An enumerator that can be used to iterate through the collection.