Click or drag to resize

TVQ Class

Fundamental element that represents data from a tag. Time, Value, and Quality. (TVQ)
Inheritance Hierarchy
SystemObject
  AxiomCore2.DataTVQ

Namespace: AxiomCore2.Data
Assembly: Canary.Axiom.Session (in Canary.Axiom.Session.exe) Version: 25.6.0.25344+3070493948bf7d32a86bd3e9a8bcf4cc9a5b1929
Syntax
C#
public class TVQ : IEquatable<TVQ>

The TVQ type exposes the following members.

Constructors
 NameDescription
Public methodTVQ Initializes data object for tag with default values.
Public methodTVQ(String) Initializes the data object with an error if an error has occured with the data retrieval or storage.
Public methodTVQ(TVQ) Initializes a TVQ from another TVQ passed in.
Public methodTVQ(DateTime, Object, UInt16) Initializes data object for tag with specified time, value, and quality.
Top
Properties
 NameDescription
Public propertyEndTime End time of data capture.
Public propertyIsBad Check if the quality of data is "Bad".
Public propertyIsDefined Check if the tvq has data.
Public propertyIsError Check if the quality of the data is "Error".
Public propertyIsGood Check if the quality of the data is "Good".
Public propertyIsNoData Check if the quality of the data is "No Data".
Public propertyIsUncertain Check if quality of the data is "Uncertain".
Public propertyQuality Quality indicator for this data value.
Public propertyTimestamp Timestamp the data value was recorded at.
Public propertyValue Value of the data recorded.
Top
Methods
 NameDescription
Public methodClone Clones the current TVQ to a new TVQ object.
Public methodClone(TVQ) Clones the TVQ supplied to a new TVQ object.
Public methodEquals Compares TVQ value with another TVQ value to determine if they are equal.
Public methodGetReadableQuality Readable Quality indicator for this data value.
Public methodToString Compiles a string containing Time, Value, and Quality indicator for this recorded data..
(Overrides ObjectToString)
Public methodValueToBool Returns the current value recorded as a boolean.
Public methodValueToDouble Returns the current value recorded as a double.
Public methodValueToInt Returns the current value recorded as a integer.
Public methodValueToSingle Returns the current value recorded as a single.
Public methodValueToString Returns the current value recorded as a string.
Top
See Also