<< Click to Display Table of Contents >>
BACnetLogData_Unnamed |
This XML representation of complex data is used internally by other XMLs supported by the driver.
<xs:complexType name="BACnetLogData_Unnamed">
<xs:sequence>
<xs:choice>
<xs:element name="BooleanValue" type="Boolean" />
<xs:element name="RealValue" type="REAL" />
<xs:element name="EnumeratedValue" type="Enumerated" />
<xs:element name="UnsignedValue" type="Unsigned" />
<xs:element name="IntegerValue" type="INTEGER" />
<xs:element name="BitstringValue" type="BitString" />
<xs:element name="NullValue" type="Null" />
<xs:element name="Failure" type="Error" />
<xs:element name="AnyValue" type="Any" />
</xs:choice>
</xs:sequence>
</xs:complexType>
Example 1:
<BACnetLogData_Unnamed>
<BooleanValue>true</BooleanValue>
</BACnetLogData_Unnamed>
Example 2:
<BACnetLogData_Unnamed>
<RealValue>1234.567749</RealValue>
</BACnetLogData_Unnamed>
Example 3:
<BACnetLogData_Unnamed>
<EnumeratedValue>1</EnumeratedValue>
</BACnetLogData_Unnamed>
Example 4:
<BACnetLogData_Unnamed>
<UnsignedValue>1236</UnsignedValue>
</BACnetLogData_Unnamed>
Example 5:
<BACnetLogData_Unnamed>
<IntegerValue>-797</IntegerValue>
</BACnetLogData_Unnamed>
Example 6:
<BACnetLogData_Unnamed>
<BitstringValue>1</BitstringValue>
</BACnetLogData_Unnamed>
Example 7:
<BACnetLogData_Unnamed>
<NullValue />
</BACnetLogData_Unnamed>
Example 8:
<BACnetLogData_Unnamed>
<Failure>
<ErrorClass>security</ErrorClass>
<ErrorCode>inconsistentParameters</ErrorCode>
</Failure>
</BACnetLogData_Unnamed>
Example 9:
<BACnetLogData_Unnamed>
<AnyValue>
<Boolean>true</Boolean>
</AnyValue>
</BACnetLogData_Unnamed>