Method Process
Process<TSource>(IObservable<TSource>)
Samples notifications from an observable sequence whenever there is a new render frame event.
public override IObservable<TSource> Process<TSource>(IObservable<TSource> source)
Parameters
sourceIObservable<TSource>The observable sequence whose notifications will be sampled at each render frame event.
Returns
- IObservable<TSource>
The sequence of sampled notifications from the
sourcesequence, emitted at each render frame event.
Type Parameters
TSourceThe type of the elements in the
sourcesequence.