C# Класс BrightIdeasSoftware.CompositeAnyFilter

A CompositeAllFilter joins several other filters together. A model object must only satisfy one of the filters to be included. If there are no filters, all model objects are included
Наследование: CompositeFilter
Показать файл Открыть проект

Открытые методы

Метод Описание
CompositeAnyFilter ( List filters ) : System

Create a filter from the given filters

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

Описание методов

CompositeAnyFilter() публичный Метод

Create a filter from the given filters
public CompositeAnyFilter ( List filters ) : System
filters List
Результат System

FilterObject() публичный Метод

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
Результат bool