Method Process
Process<TSource>(IObservable<TSource>)
Generates a sequence of values indicating whether the target key is up or down
each time the source sequence emits a notification.
public override IObservable<bool> Process<TSource>(IObservable<TSource> source)
Parameters
sourceIObservable<TSource>The sequence containing the notifications indicating when to check whether the key is up or down.
Returns
- IObservable<bool>
A sequence of bool values indicating whether the key is up or down at the time the
sourcesequence emits a notification.
Type Parameters
TSourceThe type of the elements in the
sourcesequence.