Build 1.01.318.0

[This is preliminary documentation and is subject to change.]

The set of built-in data types for UA type descriptions.

Namespace: Opc.Ua
Assembly: Opc.Ua.Core (in Opc.Ua.Core.dll) Version: 1.1.318.1 (1.01.318.1)

Syntax

C#
public enum BuiltInType
Visual Basic
Public Enumeration BuiltInType
Visual C++
public enum class BuiltInType

Members

Member nameValueDescription
Null0 An invalid or unspecified value.
Boolean1 A boolean logic value (true or false).
SByte2 An 8 bit signed integer value.
Byte3 An 8 bit unsigned integer value.
Int164 A 16 bit signed integer value.
UInt165 A 16 bit signed integer value.
Int326 A 32 bit signed integer value.
UInt327 A 32 bit unsigned integer value.
Int648 A 64 bit signed integer value.
UInt649 A 64 bit unsigned integer value.
Float10 An IEEE single precision (32 bit) floating point value.
Double11 An IEEE double precision (64 bit) floating point value.
String12 A sequence of Unicode characters.
DateTime13 An instance in time.
Guid14 A 128-bit globally unique identifier.
ByteString15 A sequence of bytes.
XmlElement16 An XML element.
NodeId17 An identifier for a node in the address space of a UA server.
ExpandedNodeId18 A node id that stores the namespace URI instead of the namespace index.
StatusCode19 A structured result code.
QualifiedName20 A string qualified with a namespace.
LocalizedText21 A localized text string with an locale identifier.
ExtensionObject22 An opaque object with a syntax that may be unknown to the receiver.
DataValue23 A data value with an associated quality and timestamp.
Variant24 Any of the other built-in types.
DiagnosticInfo25 A diagnostic information associated with a result code.
Number26 Any numeric value.
Integer27 A signed integer.
UInteger28 An unsigned integer.
Enumeration29 An enumerated value

Remarks

An enumeration that lists all of the built-in data types for OPC UA Type Descriptions.

See Also