ReadAccessResult

<< Click to Display Table of Contents >>

 

ReadAccessResult

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

XML Schema

<xs:complexType name="ReadAccessResult">
  <xs:sequence>
    <xs:element name="ObjectIdentifier" type="BACnetObjectIdentifier" />
    <xs:element name="ListOfResults" type="ReadAccessResult_ListOfResults" />
  </xs:sequence>
</xs:complexType>

Examples

Example 1:

<ReadAccessResult>
  <ObjectIdentifier>device-501</ObjectIdentifier>
  <ListOfResults />
</ReadAccessResult>

Example 2:

<ReadAccessResult>
  <ObjectIdentifier>device-502</ObjectIdentifier>
  <ListOfResults>
    <ListOfResults_Item>
      <PropertyIdentifier>action</PropertyIdentifier>
      <PropertyArrayIndex>1237</PropertyArrayIndex>
      <ReadResult>
        <PropertyValue>
          <Boolean>true</Boolean>
        </PropertyValue>
      </ReadResult>
    </ListOfResults_Item>
    <ListOfResults_Item>
      <PropertyIdentifier>activeText</PropertyIdentifier>
      <PropertyArrayIndex>1239</PropertyArrayIndex>
      <ReadResult>
        <PropertyValue>
          <Boolean>true</Boolean>
        </PropertyValue>
      </ReadResult>
    </ListOfResults_Item>
    <ListOfResults_Item>
      <PropertyIdentifier>alarmValue</PropertyIdentifier>
      <PropertyArrayIndex>1241</PropertyArrayIndex>
      <ReadResult>
        <PropertyValue>
          <Boolean>true</Boolean>
        </PropertyValue>
      </ReadResult>
    </ListOfResults_Item>
  </ListOfResults>
</ReadAccessResult>

Was this page useful?