C# Class BrightIdeasSoftware.CompositeAllFilter

A CompositeAllFilter joins several other filters together. A model object must satisfy all filters to be included. If there are no filters, all model objects are included
Inheritance: CompositeFilter
Afficher le fichier Open project: soywiz/cspspemu Class Usage Examples

Méthodes publiques

Méthode Description
CompositeAllFilter ( List filters ) : System

Create a filter

FilterObject ( object modelObject ) : bool

Decide whether or not the given model should be included by the filter

Filters is guaranteed to be non-empty when this method is called

Method Details

CompositeAllFilter() public méthode

Create a filter
public CompositeAllFilter ( List filters ) : System
filters List
Résultat System

FilterObject() public méthode

Decide whether or not the given model should be included by the filter
Filters is guaranteed to be non-empty when this method is called
public FilterObject ( object modelObject ) : bool
modelObject object The model object under consideration
Résultat bool