Click or drag to resize

ObservableFilteredCollectionT Constructor

Initializes a new instance of the ObservableFilteredCollectionT class.

Namespace: TomsToolbox.ObservableCollections
Assembly: TomsToolbox.ObservableCollections (in TomsToolbox.ObservableCollections.dll) Version: 2.21.0+44d18b541fc9419ec3c549350a832394661b2a4d
XMLNS for XAML: Not mapped to an xmlns.
Syntax
public ObservableFilteredCollection(
	IEnumerable sourceCollection,
	Func<T, bool> filter,
	params string[] liveTrackingProperties
)

Parameters

sourceCollection  IEnumerable
The source collection. This instance will not hold a reference to the source collection.
filter  FuncT, Boolean
The filter.
liveTrackingProperties  String
The live tracking properties. Whenever one of these properties in any item changes, the filter is reevaluated for the item.
See Also