Observable.Catch<TSource> Method (IObservable<TSource>, IObservable<TSource>)
Continues an observable sequence that is terminated by an exception with the next observable sequence.
Namespace: System.Reactive.Linq
Assembly: System.Reactive (in System.Reactive.dll)
public static IObservable<TSource> Catch<TSource>( this IObservable<TSource> first, IObservable<TSource> second )
Type Parameters
- TSource
The type of source.
Parameters
- first
- Type: System.IObservable<TSource>
First observable sequence whose exception (if any) is caught.
- second
- Type: System.IObservable<TSource>
The second observable sequence used to produce results when an error occurred in the first sequence.
Return Value
Type: System.IObservable<TSource>An observable sequence containing the first sequence's elements, followed by the elements of the second sequence in case an exception occurred.