Qbservable.Do < TSource 方法 (IQbservable < TSource、運算式動作 < TSource >>>> 、運算式 << 動作 >)
針對可查詢的可觀察序列中的每個專案叫用動作,並在可查詢可觀察序列的正常或例外終止時叫用動作。
Namespace:System.Reactive.Linq
裝配: System.Reactive.Providers.dll) 中的 System.Reactive.Providers (
Syntax
'Declaration
<ExtensionAttribute> _
Public Shared Function Do(Of TSource) ( _
source As IQbservable(Of TSource), _
onNext As Expression(Of Action(Of TSource)), _
onCompleted As Expression(Of Action) _
) As IQbservable(Of TSource)
'Usage
Dim source As IQbservable(Of TSource)
Dim onNext As Expression(Of Action(Of TSource))
Dim onCompleted As Expression(Of Action)
Dim returnValue As IQbservable(Of TSource)
returnValue = source.Do(onNext, onCompleted)
public static IQbservable<TSource> Do<TSource>(
this IQbservable<TSource> source,
Expression<Action<TSource>> onNext,
Expression<Action> onCompleted
)
[ExtensionAttribute]
public:
generic<typename TSource>
static IQbservable<TSource>^ Do(
IQbservable<TSource>^ source,
Expression<Action<TSource>^>^ onNext,
Expression<Action^>^ onCompleted
)
static member Do :
source:IQbservable<'TSource> *
onNext:Expression<Action<'TSource>> *
onCompleted:Expression<Action> -> IQbservable<'TSource>
JScript does not support generic types and methods.
類型參數
- TSource
來源的類型。
參數
- source
類型:System.Reactive.Linq.IQbservable< TSource>
來源序列。
- onNext
類型:System.Linq.Expressions.Expression<動作< TSource>>
要針對可查詢可觀察序列中每個元素叫用的動作。
- onCompleted
類型:System.Linq.Expressions.Expression<動作>
在可查詢可觀察序列的正常終止時叫用的動作。
傳回值
類型:System.Reactive.Linq.IQbservable< TSource>
套用副作用行為的來源序列。
使用注意事項
在 Visual Basic 和 C# 中,您可以在IQbservable< TSource > 類型的任何物件上呼叫此方法作為實例方法。 使用執行個體方法語法呼叫這個方法時,請省略第一個參數。 如需詳細資訊,請參閱 或 。