Qbservable.SelectMany<TSource, TOther> Method (IQbservable<TSource>, IObservable<TOther>)
Projects each element of a queryable observable sequence to a queryable observable sequence and flattens the resulting queryable observable sequences into one queryable observable sequence.
Namespace: System.Reactive.Linq
Assembly: System.Reactive.Providers (in System.Reactive.Providers.dll)
public static IQbservable<TOther> SelectMany<TSource, TOther>( this IQbservable<TSource> source, IObservable<TOther> other )
Type Parameters
- TSource
The type of source.
- TOther
The type of result.
Parameters
- source
- Type: System.Reactive.Linq.IQbservable<TSource>
A queryable observable sequence of elements to project.
- other
- Type: System.IObservable<TOther>
A transform function to apply to each element.
Return Value
Type: System.Reactive.Linq.IQbservable<TOther>A queryable observable sequence whose elements are the result of invoking the one-to-many transform function on each element of the input sequence.