Qbservable.And(IQbservable, IObservable) method¶
Defined in
Type: Qbservable
Namespace: System.Reactive.Linq
Assembly: System.Reactive.dll
Applies to
netstandard2.0
public static QueryablePattern<TLeft, TRight> And<TLeft, TRight>(this IQbservable<TLeft> left, IObservable<TRight> right)
Summary: Creates a pattern that matches when both observable sequences have an available element.
Type parameters
| Name | Description |
|---|---|
TLeft | The type of the elements in the left sequence. |
TRight | The type of the elements in the right sequence. |
Parameters
| Name | Type | Description |
|---|---|---|
left | [IQbservable | Observable sequence to match with the right sequence. |
right | IObservable | Observable sequence to match with the left sequence. |
Returns: QueryablePattern
Exceptions
| Type | Condition |
|---|---|
| System.ArgumentNullException | left or right is null. |