Share via


QueryablePattern<T1, T2, T3>.And<T4> Method

Matches when all observable sequences have an available value.

Namespace:  System.Reactive.Joins
Assembly:  System.Reactive.Providers (in System.Reactive.Providers.dll)

Syntax

'Declaration
Public Function And(Of T4) ( _
    other As IObservable(Of T4) _
) As QueryablePattern(Of T1, T2, T3, T4)
'Usage
Dim instance As QueryablePattern
Dim other As IObservable(Of T4)
Dim returnValue As QueryablePattern(Of T1, T2, T3, T4)

returnValue = instance.And(other)
public QueryablePattern<T1, T2, T3, T4> And<T4>(
    IObservable<T4> other
)
public:
generic<typename T4>
QueryablePattern<T1, T2, T3, T4>^ And(
    IObservable<T4>^ other
)
member And : 
        other:IObservable<'T4> -> QueryablePattern<'T1, 'T2, 'T3, 'T4> 
JScript does not support generic types and methods.

Type Parameters

  • T4
    The type of the fourth observable sequence.

Parameters

Return Value

Type: System.Reactive.Joins.QueryablePattern<T1, T2, T3, T4>
The join queryable pattern.

See Also

Reference

QueryablePattern<T1, T2, T3> Class

System.Reactive.Joins Namespace