C# Class openHistorian.Data.Query.SignalDataUnknown

This type of signal only supports reading and writing data via its raw type. Type conversions are not supported since its origional type is unknown.
Inheritance: SignalDataBase
Afficher le fichier Open project: GridProtectionAlliance/openHistorian Class Usage Examples

Méthodes publiques

Méthode Description
AddDataRaw ( ulong time, ulong value ) : void

Adds a value to the signal in its raw 64-bit format.

GetDataRaw ( int index, ulong &time, ulong &value ) : void

Gets a value from the signal with the provided index in its raw 64-bit format.

GetDate ( int index ) : ulong
SignalDataUnknown ( ) : System

Method Details

AddDataRaw() public méthode

Adds a value to the signal in its raw 64-bit format.
public AddDataRaw ( ulong time, ulong value ) : void
time ulong the time value to consider
value ulong the 64-bit value
Résultat void

GetDataRaw() public méthode

Gets a value from the signal with the provided index in its raw 64-bit format.
public GetDataRaw ( int index, ulong &time, ulong &value ) : void
index int The zero based index of the position
time ulong an output field for the time
value ulong an output field for the raw 64-bit value
Résultat void

GetDate() public méthode

public GetDate ( int index ) : ulong
index int
Résultat ulong

SignalDataUnknown() public méthode

public SignalDataUnknown ( ) : System
Résultat System