Observable.Retry<TSource> Method (IObservable<TSource>, Int32)
Repeats the source observable sequence until it successfully terminates.
Namespace: System.Reactive.Linq
Assembly: System.Reactive (in System.Reactive.dll)
public static IObservable<TSource> Retry<TSource>( this IObservable<TSource> source, int retryCount )
Type Parameters
- TSource
The type source.
Parameters
- source
- Type: System.IObservable<TSource>
Observable sequence to repeat until it successfully terminates.
- retryCount
- Type: System.Int32
Number of times to repeat the sequence.
Return Value
Type: System.IObservable<TSource>Observable sequence producing the elements of the given sequence repeatedly until it terminates successfully.