Interface IDataSource
A data source that produces a stream of data values.
public interface IDataSource
Properties
DataObservable
Gets the IObservable<T> that produces data values.
IObservable<IDataValue> DataObservable { get; }
Property Value
Descriptor
Gets the data value descriptor for this data source.
IDataValueDescriptor Descriptor { get; }
Property Value
DisplayName
Gets the optional human-readable name of the data source (e.g., a reading name), or null if there is none.
string DisplayName { get; }
Property Value
Remarks
This should be in title case (for example, "Gas Pressure").