SequenceOfUnsigned

<< Click to Display Table of Contents >>

 

SequenceOfUnsigned

This XML representation of complex data is used by the following objects/properties:

channel.executionDelay

credentialDataInput.supportedFormatClasses

loadControl.shedLevels

multiStateInput.alarmValues

multiStateInput.faultValues

multiStateValue.alarmValues

multiStateValue.faultValues

XML Schema

<?xml version="1.0" encoding="utf-8"?>
<xs:schema xmlns="http://www.elipse.com.br/drivers/BACnet" xmlns:mstns="http://www.elipse.com.br/drivers/BACnet" elementFormDefault="qualified" targetNamespace="http://www.elipse.com.br/drivers/BACnet" xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <xs:complexType name="SequenceOfUnsigned">
    <xs:sequence>
      <xs:element minOccurs="0" maxOccurs="unbounded" name="Unsigned" type="Unsigned" />
    </xs:sequence>
  </xs:complexType>
  <xs:element name="Value" type="SequenceOfUnsigned" />
</xs:schema>

Examples

Example 1:

<?xml version="1.0" encoding="utf-8" ?>
<Value xmlns="http://www.elipse.com.br/drivers/BACnet">
  <SequenceOfUnsigned />
</Value>

Example 2:

<?xml version="1.0" encoding="utf-8" ?>
<Value xmlns="http://www.elipse.com.br/drivers/BACnet">
  <SequenceOfUnsigned>
    <Unsigned>1234</Unsigned>
    <Unsigned>1235</Unsigned>
    <Unsigned>1236</Unsigned>
  </SequenceOfUnsigned>
</Value>

Was this page useful?