Observable.SelectMany<TSource, TResult> Method (IObservable<TSource>, Func<TSource, IObservable<TResult>>, Func<Exception, IObservable<TResult>>, Func<IObservable<TResult>>)
Namespace: Microsoft.Phone.Reactive
Assembly: Microsoft.Phone.Reactive (in Microsoft.Phone.Reactive.dll)
Syntax
'Declaration
<ExtensionAttribute> _
Public Shared Function SelectMany(Of TSource, TResult) ( _
source As IObservable(Of TSource), _
onNext As Func(Of TSource, IObservable(Of TResult)), _
onError As Func(Of Exception, IObservable(Of TResult)), _
onCompleted As Func(Of IObservable(Of TResult)) _
) As IObservable(Of TResult)
public static IObservable<TResult> SelectMany<TSource, TResult>(
this IObservable<TSource> source,
Func<TSource, IObservable<TResult>> onNext,
Func<Exception, IObservable<TResult>> onError,
Func<IObservable<TResult>> onCompleted
)
[ExtensionAttribute]
public:
generic<typename TSource, typename TResult>
static IObservable<TResult>^ SelectMany(
IObservable<TSource>^ source,
Func<TSource, IObservable<TResult>^>^ onNext,
Func<Exception^, IObservable<TResult>^>^ onError,
Func<IObservable<TResult>^>^ onCompleted
)
static member SelectMany :
source:IObservable<'TSource> *
onNext:Func<'TSource, IObservable<'TResult>> *
onError:Func<Exception, IObservable<'TResult>> *
onCompleted:Func<IObservable<'TResult>> -> IObservable<'TResult>
Type Parameters
- TSource
- TResult
Parameters
- source
Type: System.IObservable<TSource>
- onNext
Type: System.Func<TSource, IObservable<TResult>>
- onError
Type: System.Func<Exception, IObservable<TResult>>
- onCompleted
Type: System.Func<IObservable<TResult>>
Return Value
Type: System.IObservable<TResult>
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 Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
Version Information
.NET for Windows Phone apps
Supported in: Windows Phone 8, Silverlight 8.1
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.