Qbservable.Repeat<TResult> Method (IQbservableProvider, TResult, Int32)
Generates a queryable observable sequence that repeats the given element the specified number of times.
Namespace: System.Reactive.Linq
Assembly: System.Reactive.Providers (in System.Reactive.Providers.dll)
Syntax
'Declaration
<ExtensionAttribute> _
Public Shared Function Repeat(Of TResult) ( _
provider As IQbservableProvider, _
value As TResult, _
repeatCount As Integer _
) As IQbservable(Of TResult)
'Usage
Dim provider As IQbservableProvider
Dim value As TResult
Dim repeatCount As Integer
Dim returnValue As IQbservable(Of TResult)
returnValue = provider.Repeat(value, _
repeatCount)
public static IQbservable<TResult> Repeat<TResult>(
this IQbservableProvider provider,
TResult value,
int repeatCount
)
[ExtensionAttribute]
public:
generic<typename TResult>
static IQbservable<TResult>^ Repeat(
IQbservableProvider^ provider,
TResult value,
int repeatCount
)
static member Repeat :
provider:IQbservableProvider *
value:'TResult *
repeatCount:int -> IQbservable<'TResult>
JScript does not support generic types and methods.
Type Parameters
- TResult
The type of result.
Parameters
provider
Type: System.Reactive.Linq.IQbservableProvider
The local Qbservable provider.value
Type: TResult
The element to repeat.repeatCount
Type: System.Int32
The number of times to repeat the element.
Return Value
Type: System.Reactive.Linq.IQbservable<TResult>
A queryable observable sequence that repeats the given element the specified number of times.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type IQbservableProvider. When you use instance method syntax to call this method, omit the first parameter. For more information, see or .
See Also
Reference
System.Reactive.Linq Namespace
Qbservable.Repeat<TResult> Method (IQbservableProvider, TResult, Int32, IScheduler)
Generates a queryable observable sequence that repeats the given element of the specified number of times.
Namespace: System.Reactive.Linq
Assembly: System.Reactive.Providers (in System.Reactive.Providers.dll)
Syntax
'Declaration
<ExtensionAttribute> _
Public Shared Function Repeat(Of TResult) ( _
provider As IQbservableProvider, _
value As TResult, _
repeatCount As Integer, _
scheduler As IScheduler _
) As IQbservable(Of TResult)
'Usage
Dim provider As IQbservableProvider
Dim value As TResult
Dim repeatCount As Integer
Dim scheduler As IScheduler
Dim returnValue As IQbservable(Of TResult)
returnValue = provider.Repeat(value, _
repeatCount, scheduler)
public static IQbservable<TResult> Repeat<TResult>(
this IQbservableProvider provider,
TResult value,
int repeatCount,
IScheduler scheduler
)
[ExtensionAttribute]
public:
generic<typename TResult>
static IQbservable<TResult>^ Repeat(
IQbservableProvider^ provider,
TResult value,
int repeatCount,
IScheduler^ scheduler
)
static member Repeat :
provider:IQbservableProvider *
value:'TResult *
repeatCount:int *
scheduler:IScheduler -> IQbservable<'TResult>
JScript does not support generic types and methods.
Type Parameters
- TResult
The type of result.
Parameters
provider
Type: System.Reactive.Linq.IQbservableProvider
The local Qbservable provider.value
Type: TResult
The element to repeat.repeatCount
Type: System.Int32
The number of times to repeat the element.scheduler
Type: System.Reactive.Concurrency.IScheduler
The scheduler to run the producer loop on.
Return Value
Type: System.Reactive.Linq.IQbservable<TResult>
A queryable observable sequence that repeats the given element of the specified number of times.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type IQbservableProvider. When you use instance method syntax to call this method, omit the first parameter. For more information, see or .
See Also
Reference
System.Reactive.Linq Namespace
Qbservable.Repeat<TResult> Method (IQbservableProvider, TResult)
Generates a queryable observable sequence that repeats the given element infinitely.
Namespace: System.Reactive.Linq
Assembly: System.Reactive.Providers (in System.Reactive.Providers.dll)
Syntax
'Declaration
<ExtensionAttribute> _
Public Shared Function Repeat(Of TResult) ( _
provider As IQbservableProvider, _
value As TResult _
) As IQbservable(Of TResult)
'Usage
Dim provider As IQbservableProvider
Dim value As TResult
Dim returnValue As IQbservable(Of TResult)
returnValue = provider.Repeat(value)
public static IQbservable<TResult> Repeat<TResult>(
this IQbservableProvider provider,
TResult value
)
[ExtensionAttribute]
public:
generic<typename TResult>
static IQbservable<TResult>^ Repeat(
IQbservableProvider^ provider,
TResult value
)
static member Repeat :
provider:IQbservableProvider *
value:'TResult -> IQbservable<'TResult>
JScript does not support generic types and methods.
Type Parameters
- TResult
The type of result.
Parameters
provider
Type: System.Reactive.Linq.IQbservableProvider
The local Qbservable provider.value
Type: TResult
The element to repeat.
Return Value
Type: System.Reactive.Linq.IQbservable<TResult>
A queryable observable sequence that repeats the given element infinitely.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type IQbservableProvider. When you use instance method syntax to call this method, omit the first parameter. For more information, see or .
See Also
Reference
System.Reactive.Linq Namespace
Qbservable.Repeat<TResult> Method (IQbservableProvider, TResult, IScheduler)
Generates a queryable observable sequence that repeats the given element infinitely.
Namespace: System.Reactive.Linq
Assembly: System.Reactive.Providers (in System.Reactive.Providers.dll)
Syntax
'Declaration
<ExtensionAttribute> _
Public Shared Function Repeat(Of TResult) ( _
provider As IQbservableProvider, _
value As TResult, _
scheduler As IScheduler _
) As IQbservable(Of TResult)
'Usage
Dim provider As IQbservableProvider
Dim value As TResult
Dim scheduler As IScheduler
Dim returnValue As IQbservable(Of TResult)
returnValue = provider.Repeat(value, _
scheduler)
public static IQbservable<TResult> Repeat<TResult>(
this IQbservableProvider provider,
TResult value,
IScheduler scheduler
)
[ExtensionAttribute]
public:
generic<typename TResult>
static IQbservable<TResult>^ Repeat(
IQbservableProvider^ provider,
TResult value,
IScheduler^ scheduler
)
static member Repeat :
provider:IQbservableProvider *
value:'TResult *
scheduler:IScheduler -> IQbservable<'TResult>
JScript does not support generic types and methods.
Type Parameters
- TResult
The type of result.
Parameters
provider
Type: System.Reactive.Linq.IQbservableProvider
The local Qbservable provider.value
Type: TResult
The element to repeat.scheduler
Type: System.Reactive.Concurrency.IScheduler
The scheduler to run the producer loop on.
Return Value
Type: System.Reactive.Linq.IQbservable<TResult>
The queryable observable sequence that repeats the given element infinitely.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type IQbservableProvider. When you use instance method syntax to call this method, omit the first parameter. For more information, see or .