Qbservable.Repeat<TSource> Method (IQbservable<TSource>, Int32)

Repeats the queryable observable sequence indefinitely.

Namespace:  System.Reactive.Linq
Assembly:  System.Reactive.Providers (in System.Reactive.Providers.dll)

Syntax

'Declaration
<ExtensionAttribute> _
Public Shared Function Repeat(Of TSource) ( _
    source As IQbservable(Of TSource), _
    repeatCount As Integer _
) As IQbservable(Of TSource)
'Usage
Dim source As IQbservable(Of TSource)
Dim repeatCount As Integer
Dim returnValue As IQbservable(Of TSource)

returnValue = source.Repeat(repeatCount)
public static IQbservable<TSource> Repeat<TSource>(
    this IQbservable<TSource> source,
    int repeatCount
)
[ExtensionAttribute]
public:
generic<typename TSource>
static IQbservable<TSource>^ Repeat(
    IQbservable<TSource>^ source, 
    int repeatCount
)
static member Repeat : 
        source:IQbservable<'TSource> * 
        repeatCount:int -> IQbservable<'TSource> 
JScript does not support generic types and methods.

Type Parameters

  • TSource
    The type of source.

Parameters

  • repeatCount
    Type: System.Int32
    The number of times to repeat the sequence.

Return Value

Type: System.Reactive.Linq.IQbservable<TSource>
The queryable 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 IQbservable<TSource>. When you use instance method syntax to call this method, omit the first parameter. For more information, see or .

See Also

Reference

Qbservable Class

Repeat Overload

System.Reactive.Linq Namespace