Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Generates an observable sequence that repeats the given element the specified number of times.
Namespace: System.Reactive.Linq
Assembly: System.Reactive (in System.Reactive.dll)
Syntax
'Declaration
Public Shared Function Repeat(Of TResult) ( _
value As TResult, _
repeatCount As Integer _
) As IObservable(Of TResult)
'Usage
Dim value As TResult
Dim repeatCount As Integer
Dim returnValue As IObservable(Of TResult)
returnValue = Observable.Repeat(value, _
repeatCount)
public static IObservable<TResult> Repeat<TResult>(
TResult value,
int repeatCount
)
public:
generic<typename TResult>
static IObservable<TResult>^ Repeat(
TResult value,
int repeatCount
)
static member Repeat :
value:'TResult *
repeatCount:int -> IObservable<'TResult>
JScript does not support generic types and methods.
Type Parameters
- TResult
The type of result.
Parameters
- value
Type: TResult
The element to repeat.
- repeatCount
Type: System.Int32
The number of times to repeat the element.
Return Value
Type: System.IObservable<TResult>
An observable sequence that repeats the given element the specified number of times.