Qbservable.Repeat < TSource > 方法 (IQbservable < TSource > , Int32)
無限期地重複可查詢的可觀察序列。
Namespace:System.Reactive.Linq
裝配: System.Reactive.Providers.dll) 中的 System.Reactive.Providers (
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.
類型參數
- TSource
來源的類型。
參數
- source
類型:System.Reactive.Linq.IQbservable< TSource>
要重複的可查詢可觀察序列。
- repeatCount
類型: System.Int32
重複序列的次數。
傳回值
類型:System.Reactive.Linq.IQbservable< TSource>
可查詢的可觀察序列會重複產生指定序列的專案。
使用注意事項
在 Visual Basic 和 C# 中,您可以在IQbservable< TSource > 類型的任何物件上呼叫這個方法作為實例方法。 使用執行個體方法語法呼叫這個方法時,請省略第一個參數。 如需詳細資訊,請參閱 或 。