共用方式為


Observable.Do < TSource 方法 (IObservable < TSource > 、Action TSource >> 、動作 << 例外 > 狀況、動作)

針對可觀察序列中的每個專案叫用動作,並在可觀察序列的正常或例外終止時叫用動作。

Namespace:System.Reactive.Linq
裝配: System.Reactive.dll) 中的 System.Reactive (

Syntax

'Declaration
<ExtensionAttribute> _
Public Shared Function Do(Of TSource) ( _
    source As IObservable(Of TSource), _
    onNext As Action(Of TSource), _
    onError As Action(Of Exception), _
    onCompleted As Action _
) As IObservable(Of TSource)
'Usage
Dim source As IObservable(Of TSource)
Dim onNext As Action(Of TSource)
Dim onError As Action(Of Exception)
Dim onCompleted As Action
Dim returnValue As IObservable(Of TSource)

returnValue = source.Do(onNext, onError, _
    onCompleted)
public static IObservable<TSource> Do<TSource>(
    this IObservable<TSource> source,
    Action<TSource> onNext,
    Action<Exception> onError,
    Action onCompleted
)
[ExtensionAttribute]
public:
generic<typename TSource>
static IObservable<TSource>^ Do(
    IObservable<TSource>^ source, 
    Action<TSource>^ onNext, 
    Action<Exception^>^ onError, 
    Action^ onCompleted
)
static member Do : 
        source:IObservable<'TSource> * 
        onNext:Action<'TSource> * 
        onError:Action<Exception> * 
        onCompleted:Action -> IObservable<'TSource> 
JScript does not support generic types and methods.

類型參數

  • TSource
    來源的類型。

參數

  • onNext
    類型:System.Action< TSource>
    要針對可觀察序列中每個元素叫用的動作。
  • onCompleted
    類型: System.Action
    在可觀察序列的正常終止時叫用的動作。

傳回值

類型:System.IObservable< TSource>
套用副作用行為的來源序列。

使用注意事項

在 Visual Basic 和 C# 中,您可以在IObservable< TSource > 類型的任何物件上呼叫此方法作為實例方法。 使用執行個體方法語法呼叫這個方法時,請省略第一個參數。 如需詳細資訊,請參閱

另請參閱

參考

Observable 類別

Do 多載

System.Reactive.Linq 命名空間