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
first
IObservable<TSource>First observable sequence.
second
IObservable<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
TSource
The type of the elements in the source sequences.