Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
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)
Syntax
'Declaration
<ExtensionAttribute> _
Public Shared Function SelectMany(Of TSource, TResult) ( _
source As IObservable(Of TSource), _
selector As Func(Of TSource, IObservable(Of TResult)) _
) As IObservable(Of TResult)
'Usage
Dim source As IObservable(Of TSource)
Dim selector As Func(Of TSource, IObservable(Of TResult))
Dim returnValue As IObservable(Of TResult)
returnValue = source.SelectMany(selector)
public static IObservable<TResult> SelectMany<TSource, TResult>(
this IObservable<TSource> source,
Func<TSource, IObservable<TResult>> selector
)
[ExtensionAttribute]
public:
generic<typename TSource, typename TResult>
static IObservable<TResult>^ SelectMany(
IObservable<TSource>^ source,
Func<TSource, IObservable<TResult>^>^ selector
)
static member SelectMany :
source:IObservable<'TSource> *
selector:Func<'TSource, IObservable<'TResult>> -> IObservable<'TResult>
JScript does not support generic types and methods.
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, IObservable<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.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type IObservable<TSource>. When you use instance method syntax to call this method, omit the first parameter. For more information, see or .