C# Класс 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.
Наследование: SignalDataBase
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
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

Описание методов

AddDataRaw() публичный Метод

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
Результат void

GetDataRaw() публичный Метод

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
Результат void

GetDate() публичный Метод

public GetDate ( int index ) : ulong
index int
Результат ulong

SignalDataUnknown() публичный Метод

public SignalDataUnknown ( ) : System
Результат System