Method Process
Process<TSource>(IObservable<TSource>)
Writes the text representation of each element of an observable sequence to a serial port.
public override IObservable<TSource> Process<TSource>(IObservable<TSource> source)
Parameters
sourceIObservable<TSource>The sequence containing the elements to write to the serial port.
Returns
- IObservable<TSource>
 An observable sequence that is identical to the
sourcesequence but where there is an additional side effect of writing the elements to the serial port.
Type Parameters
TSourceThe type of the elements in the
sourcesequence.