Observable.Repeat<TSource> Method (IObservable<TSource>, Int32)
Repeats the observable sequence indefinitely.
Namespace: System.Reactive.Linq
Assembly: System.Reactive (in System.Reactive.dll)
Syntax
'Declaration
<ExtensionAttribute> _
Public Shared Function Repeat(Of TSource) ( _
source As IObservable(Of TSource), _
repeatCount As Integer _
) As IObservable(Of TSource)
'Usage
Dim source As IObservable(Of TSource)
Dim repeatCount As Integer
Dim returnValue As IObservable(Of TSource)
returnValue = source.Repeat(repeatCount)
public static IObservable<TSource> Repeat<TSource>(
this IObservable<TSource> source,
int repeatCount
)
[ExtensionAttribute]
public:
generic<typename TSource>
static IObservable<TSource>^ Repeat(
IObservable<TSource>^ source,
int repeatCount
)
static member Repeat :
source:IObservable<'TSource> *
repeatCount:int -> IObservable<'TSource>
JScript does not support generic types and methods.
Type Parameters
- TSource
The type of source.
Parameters
- source
Type: System.IObservable<TSource>
The observable sequence to repeat.
- repeatCount
Type: System.Int32
The number of times to repeat the sequence.
Return Value
Type: System.IObservable<TSource>
The observable sequence producing the elements of the given sequence repeatedly.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type IObservable<TSource>. When you use instance method syntax to call this method, omit the first parameter. For more information, see or .