Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Returns the values from the source queryable observable sequence until the other queryable observable sequence produces a value.
Namespace: System.Reactive.Linq
Assembly: System.Reactive.Providers (in System.Reactive.Providers.dll)
Syntax
'Declaration
<ExtensionAttribute> _
Public Shared Function TakeUntil(Of TSource, TOther) ( _
source As IQbservable(Of TSource), _
other As IObservable(Of TOther) _
) As IQbservable(Of TSource)
'Usage
Dim source As IQbservable(Of TSource)
Dim other As IObservable(Of TOther)
Dim returnValue As IQbservable(Of TSource)
returnValue = source.TakeUntil(other)
public static IQbservable<TSource> TakeUntil<TSource, TOther>(
this IQbservable<TSource> source,
IObservable<TOther> other
)
[ExtensionAttribute]
public:
generic<typename TSource, typename TOther>
static IQbservable<TSource>^ TakeUntil(
IQbservable<TSource>^ source,
IObservable<TOther>^ other
)
static member TakeUntil :
source:IQbservable<'TSource> *
other:IObservable<'TOther> -> IQbservable<'TSource>
JScript does not support generic types and methods.
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 observable sequence that terminates 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 up to the point the other sequence interrupted further propagation.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type IQbservable<TSource>. When you use instance method syntax to call this method, omit the first parameter. For more information, see or .