BACnetPropertyValue

<< Click to Display Table of Contents >>

 

BACnetPropertyValue

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

XML Schema

<xs:complexType name="BACnetPropertyValue">
  <xs:sequence>
    <xs:element name="PropertyIdentifier" type="BACnetPropertyIdentifier" />
    <xs:element minOccurs="0" name="PropertyArrayIndex" type="Unsigned" />
    <xs:element name="PropertyValue" type="Any" />
    <xs:element minOccurs="0" name="Priority" type="Unsigned" />
  </xs:sequence>
</xs:complexType>

Examples

Example 1:

<BACnetPropertyValue>
  <PropertyIdentifier>ackedTransitions</PropertyIdentifier>
  <PropertyArrayIndex>1235</PropertyArrayIndex>
  <PropertyValue>
    <Boolean>true</Boolean>
  </PropertyValue>
  <Priority>1236</Priority>
</BACnetPropertyValue>

Example 2:

<BACnetPropertyValue>
  <PropertyIdentifier>actionText</PropertyIdentifier>
  <PropertyValue>
    <Boolean>true</Boolean>
  </PropertyValue>
</BACnetPropertyValue>

Was this page useful?