Qbservable.SkipUntil(TSource, TOther) Method
Returns the values from the source queryable observable sequence only after the other queryable observable sequence produces a value.
Namespace: System.Reactive.Linq
Assembly: System.Reactive.Providers (in System.Reactive.Providers.dll)
Type Parameters
- TSource
The type of source.
- TOther
The other type.
Parameters
- source
- Type: System.Reactive.Linq.IQbservable(TSource)
The source sequence to propagate elements for.
- other
- Type: System.IObservable(TOther)
The queryable observable sequence that triggers propagation of elements of the source sequence.
Return Value
Type: System.Reactive.Linq.IQbservable(TSource)A queryable observable sequence containing the elements of the source sequence starting from the point the other sequence triggered propagation.