BACnetNameValueCollection

<< Click to Display Table of Contents >>

 

BACnetNameValueCollection

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

XML Schema

<xs:complexType name="BACnetNameValueCollection">
  <xs:sequence>
    <xs:element name="Members" type="SequenceOfBACnetNameValue" />
  </xs:sequence>
</xs:complexType>

Examples

Example 1:

<BACnetNameValueCollection>
  <Members />
</BACnetNameValueCollection>

Example 2:

<BACnetNameValueCollection>
  <Members>
    <BACnetNameValue>
      <Name>Abcde</Name>
      <Value>
        <Boolean>true</Boolean>
      </Value>
    </BACnetNameValue>
    <BACnetNameValue>
      <Name>Abcde</Name>
      <Value>
        <Boolean>true</Boolean>
      </Value>
    </BACnetNameValue>
    <BACnetNameValue>
      <Name>Abcde</Name>
      <Value>
        <Boolean>true</Boolean>
      </Value>
    </BACnetNameValue>
  </Members>
</BACnetNameValueCollection>

Was this page useful?