Pattern<TSource1, TSource2, TSource3, TSource4, TSource5, TSource6>
Represents a join pattern over six observable sequences.
public Pattern<TSource1, TSource2, TSource3, TSource4, TSource5, TSource6, TSource7> And<TSource7>(IObservable<TSource7> other)
Creates a pattern that matches when all seven observable sequences have an available element.
public Plan<TResult> Then<TResult>(Func<TSource1, TSource2, TSource3, TSource4, TSource5, TSource6, TResult> selector)
Matches when all observable sequences have an available element and projects the elements by invoking the selector function.