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.
Continues an observable sequence that is terminated normally or by an exception with the next observable sequence.
Namespace: System.Reactive.Linq
Assembly: System.Reactive (in System.Reactive.dll)
Syntax
'Declaration
<ExtensionAttribute> _
Public Shared Function OnErrorResumeNext(Of TSource) ( _
first As IObservable(Of TSource), _
second As IObservable(Of TSource) _
) As IObservable(Of TSource)
'Usage
Dim first As IObservable(Of TSource)
Dim second As IObservable(Of TSource)
Dim returnValue As IObservable(Of TSource)
returnValue = first.OnErrorResumeNext(second)
public static IObservable<TSource> OnErrorResumeNext<TSource>(
this IObservable<TSource> first,
IObservable<TSource> second
)
[ExtensionAttribute]
public:
generic<typename TSource>
static IObservable<TSource>^ OnErrorResumeNext(
IObservable<TSource>^ first,
IObservable<TSource>^ second
)
static member OnErrorResumeNext :
first:IObservable<'TSource> *
second:IObservable<'TSource> -> IObservable<'TSource>
JScript does not support generic types and methods.
Type Parameters
- TSource
The type of source.
Parameters
- first
Type: System.IObservable<TSource>
The first observable sequence whose exception (if any) is caught.
- second
Type: System.IObservable<TSource>
Second observable sequence used to produce results after the first sequence terminates.
Return Value
Type: System.IObservable<TSource>
An observable sequence that concatenates the first and second sequence, even if the first sequence terminates exceptionally.
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 .