Observable.SelectMany<TSource, TOther> Method (IObservable<TSource>, IObservable<TOther>)
Projects each element of an observable sequence to an observable sequence and flattens the resulting observable sequences into one observable sequence.
Namespace: System.Reactive.Linq
Assembly: System.Reactive (in System.Reactive.dll)
public static IObservable<TOther> SelectMany<TSource, TOther>( this IObservable<TSource> source, IObservable<TOther> other )
Type Parameters
- TSource
The type of source.
- TOther
The other type.
Parameters
- source
- Type: System.IObservable<TSource>
An observable sequence of elements to project.
- other
- Type: System.IObservable<TOther>
An observable sequence to project each element from the source sequence onto.
Return Value
Type: System.IObservable<TOther>An observable sequence whose elements are the result of projecting each source element onto the other sequence and merging all the resulting sequences together.