<< Click to Display Table of Contents >>
BACnetLogData |
This XML representation of complex data is used internally by other XMLs supported by the driver.
<xs:complexType name="BACnetLogData">
<xs:sequence>
<xs:choice>
<xs:element name="LogStatus" type="BACnetLogStatus" />
<xs:element name="LogData" type="SequenceOfBACnetLogData_Unnamed" />
<xs:element name="TimeChange" type="REAL" />
</xs:choice>
</xs:sequence>
</xs:complexType>
Example 1:
<BACnetLogData>
<LogStatus>
<logDisabled>true</logDisabled>
<logInterrupted>true</logInterrupted>
</LogStatus>
</BACnetLogData>
Example 2:
<BACnetLogData>
<LogData>
<Unnamed>
<BooleanValue>true</BooleanValue>
</Unnamed>
</LogData>
</BACnetLogData>
Example 3:
<BACnetLogData>
<TimeChange>1234.567749</TimeChange>
</BACnetLogData>