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
source
IObservable<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
source
sequence emits a notification.
Type Parameters
TSource
The type of the elements in the
source
sequence.