Observable.Catch Method
Include Protected Members
Include Inherited Members
Continues an observable sequence that is terminated by an exception.
This member is overloaded. For complete information about this member, including syntax, usage, and examples, click a name in the overload list.
Overload List
Name | Description | |
---|---|---|
Catch<TSource>(IEnumerable<IObservable<TSource>>) | Continues an observable sequence that is terminated by an exception with the next observable sequence. | |
Catch<TSource>(IObservable<TSource>[]) | Continues an observable sequence that is terminated by an exception with the next observable sequence. | |
Catch<TSource, TException>(IObservable<TSource>, Func<TException, IObservable<TSource>>) | Continues an observable sequence that is terminated by an exception of the specified type with the observable sequence produced by the handler. | |
Catch<TSource>(IObservable<TSource>, IObservable<TSource>) | Continues an observable sequence that is terminated by an exception with the next observable sequence. |
Top