![]() | Observable |
The ObservableExtensions type exposes the following members.
Name | Description | |
---|---|---|
![]() | ObservableCast<TTarget> | Returns an observable collection of objects of type TTarget that mirrors the source collection. |
![]() | ObservableSelect<TSource, TTarget> | Projects each element of a sequence into a new form. |
![]() | ObservableSelectMany<TSource, TTarget> | Projects each element of a sequence to an IList<T>, flattens the resulting sequences into one sequence, and invokes a result selector function on each element therein. If the source is an observable collection, the resulting sequence will track the changes. |
![]() | ObservableWhere<T> | Returns an observable collection of objects of type T that contains all items of the source collection that pass the filter. See ObservableFilteredCollection<T> for details. |