Observable.OnErrorResumeNext<TSource> Method (IObservable<TSource>, IObservable<TSource>)
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)
public static IObservable<TSource> OnErrorResumeNext<TSource>( this IObservable<TSource> first, IObservable<TSource> second )
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.