Method Process
Process<TSource, TOther>(IObservable<TSource>, IObservable<TOther>)
Returns the elements from an observable sequence only after the second sequence emits a notification.
public IObservable<TSource> Process<TSource, TOther>(IObservable<TSource> source, IObservable<TOther> other)
Parameters
sourceIObservable<TSource>The source sequence to propagate elements for.
otherIObservable<TOther>The observable sequence indicating the time at which to start taking elements from the
sourcesequence.
Returns
- IObservable<TSource>
An observable sequence containing the elements of the
sourcesequence emitted after theothersequence emits a notification.
Type Parameters
TSourceThe type of the elements in the
sourcesequence.TOtherThe type of the elements in the
othersequence.