This topic has not yet been rated - Rate this topic

Qbservable::OnErrorResumeNext<TSource> Method (IQbservable<TSource>, IObservable<TSource>)

Continues a queryable observable sequence that is terminated normally or by an exception with the next queryable observable sequence.

Namespace:  System.Reactive.Linq
Assembly:  System.Reactive.Providers (in System.Reactive.Providers.dll)
[ExtensionAttribute]
public:
generic<typename TSource>
static IQbservable<TSource>^ OnErrorResumeNext(
	IQbservable<TSource>^ first, 
	IObservable<TSource>^ second
)

Type Parameters

TSource

The type of source.

Parameters

first
Type: System.Reactive.Linq::IQbservable<TSource>
The first queryable observable sequence whose exception (if any) is caught.
second
Type: System::IObservable<TSource>
Second queryable observable sequence used to produce results after the first sequence terminates.

Return Value

Type: System.Reactive.Linq::IQbservable<TSource>
A queryable 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 IQbservable<TSource>. When you use instance method syntax to call this method, omit the first parameter. For more information, see http://msdn.microsoft.com/en-us/library/bb384936(v=vs.103).aspx or http://msdn.microsoft.com/en-us/library/bb383977(v=vs.103).aspx.
Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.