Method Process
Process<TSource>(IObservable<TSource>, IObservable<TSource>)
Determines whether two sequences are equal by comparing the elements pairwise.
public IObservable<bool> Process<TSource>(IObservable<TSource> first, IObservable<TSource> second)
Parameters
firstIObservable<TSource>First observable sequence.
secondIObservable<TSource>Second observable sequence.
Returns
- IObservable<bool>
An observable sequence that contains a single element indicating whether both sequences are of equal length and their corresponding elements are equal according to the default equality comparer for their type.
Type Parameters
TSourceThe type of the elements in the source sequences.