Pattern.And(IObservable) method¶
Defined in
Type: PatternSystem.Reactive.Joins
Assembly: System.Reactive.dll
Applies to
netstandard2.0
public Pattern<TSource1, TSource2, TSource3, TSource4> And<TSource4>(IObservable<TSource4> other)
Summary: Creates a pattern that matches when all four observable sequences have an available element.
Type parameters
| Name | Description |
|---|---|
TSource4 | The type of the elements in the fourth observable sequence. |
Parameters
| Name | Type | Description |
|---|---|---|
other | IObservable | Observable sequence to match with the three previous sequences. |
Returns: Pattern
Exceptions
| Type | Condition |
|---|---|
| System.ArgumentNullException | other is null. |