BACnetPropertyAccessResult

<< Click to Display Table of Contents >>

 

BACnetPropertyAccessResult

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

XML Schema

<xs:complexType name="BACnetPropertyAccessResult">
  <xs:sequence>
    <xs:element name="ObjectIdentifier" type="BACnetObjectIdentifier" />
    <xs:element name="PropertyIdentifier" type="BACnetPropertyIdentifier" />
    <xs:element minOccurs="0" name="PropertyArrayIndex" type="Unsigned" />
    <xs:element minOccurs="0" name="DeviceIdentifier" type="BACnetObjectIdentifier" />
    <xs:element name="AccessResult" type="BACnetPropertyAccessResult_AccessResult" />
  </xs:sequence>
</xs:complexType>

Examples

Example 1:

<BACnetPropertyAccessResult>
  <ObjectIdentifier>device-501</ObjectIdentifier>
  <PropertyIdentifier>ackRequired</PropertyIdentifier>
  <PropertyArrayIndex>1236</PropertyArrayIndex>
  <DeviceIdentifier>device-504</DeviceIdentifier>
  <AccessResult>
    <PropertyValue>
      <Boolean>true</Boolean>
    </PropertyValue>
  </AccessResult>
</BACnetPropertyAccessResult>

Example 2:

<BACnetPropertyAccessResult>
  <ObjectIdentifier>device-505</ObjectIdentifier>
  <PropertyIdentifier>activeVtSessions</PropertyIdentifier>
  <AccessResult>
    <PropertyValue>
      <SequenceOfBACnetVTSession>
        <BACnetVTSession>
          <LocalVtSessionId>39</LocalVtSessionId>
          <RemoteVtSessionId>40</RemoteVtSessionId>
          <RemoteVtAddress>
            <NetworkNumber>7642</NetworkNumber>
            <MacAddress>FF</MacAddress>
          </RemoteVtAddress>
        </BACnetVTSession>
      </SequenceOfBACnetVTSession>
    </PropertyValue>
  </AccessResult>
</BACnetPropertyAccessResult>

Was this page useful?