Pattern<T1, T2, T3, T4>.And<T5> Method
Matches when all observable sequences have an available value.
Namespace: System.Reactive.Joins
Assembly: System.Reactive (in System.Reactive.dll)
Syntax
'Declaration
Public Function And(Of T5) ( _
other As IObservable(Of T5) _
) As Pattern(Of T1, T2, T3, T4, T5)
'Usage
Dim instance As Pattern
Dim other As IObservable(Of T5)
Dim returnValue As Pattern(Of T1, T2, T3, T4, T5)
returnValue = instance.And(other)
public Pattern<T1, T2, T3, T4, T5> And<T5>(
IObservable<T5> other
)
public:
generic<typename T5>
Pattern<T1, T2, T3, T4, T5>^ And(
IObservable<T5>^ other
)
member And :
other:IObservable<'T5> -> Pattern<'T1, 'T2, 'T3, 'T4, 'T5>
JScript does not support generic types and methods.
Type Parameters
- T5
The type of the fifth component of the pattern.
Parameters
- other
Type: System.IObservable<T5>
The fifth component of the pattern.
Return Value
Type: System.Reactive.Joins.Pattern<T1, T2, T3, T4, T5>
The join pattern.