Click or drag to resize

ObservableExtensions Methods

The ObservableExtensions type exposes the following members.

Methods
 NameDescription
Public Extension MethodObservableCast<TTarget> Returns an observable collection of objects of type TTarget that mirrors the source collection.
Public Extension MethodObservableSelect<TSource, TTarget> Projects each element of a sequence into a new form.
Public Extension MethodObservableSelectMany<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.
Public Extension MethodObservableWhere<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.
Top
See Also