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