BACnetLogData

<< Click to Display Table of Contents >>

 

BACnetLogData

This XML representation of complex data is used internally by other XMLs supported by the driver.

XML Schema

<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>

Examples

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>

Was this page useful?