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
Show file Open project: GridProtectionAlliance/openHistorian Class Usage Examples

Public Methods

Method 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 method

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
return void

GetDataRaw() public method

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
return void

GetDate() public method

public GetDate ( int index ) : ulong
index int
return ulong

SignalDataUnknown() public method

public SignalDataUnknown ( ) : System
return System