Observable.SelectMany<TSource, TResult> Method (IObservable<TSource>, Func<TSource, IEnumerable<TResult>>)
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<TResult> SelectMany<TSource, TResult>( this IObservable<TSource> source, Func<TSource, IEnumerable<TResult>> selector )
Type Parameters
- TSource
The type of source.
- TResult
The type of result.
Parameters
- source
- Type: System.IObservable<TSource>
An observable sequence of elements to project.
- selector
- Type: System.Func<TSource, IEnumerable<TResult>>
A transform function to apply to each element.
Return Value
Type: System.IObservable<TResult>An observable sequence whose elements are the result of invoking the one-to-many transform function on each element of the input sequence.