<< Clique para Mostrar o Sumário >>
SequenceOfBitString |
Esta representação de dados complexos via XML é utilizada pelos seguintes objetos/propriedades:
<?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="SequenceOfBitString">
<xs:sequence>
<xs:element minOccurs="0" maxOccurs="unbounded" name="BitString" type="BitString" />
</xs:sequence>
</xs:complexType>
<xs:element name="Value" type="SequenceOfBitString" />
</xs:schema>
Exemplo 1:
<?xml version="1.0" encoding="utf-8" ?>
<Value xmlns="http://www.elipse.com.br/drivers/BACnet">
<SequenceOfBitString />
</Value>
Exemplo 2:
<?xml version="1.0" encoding="utf-8" ?>
<Value xmlns="http://www.elipse.com.br/drivers/BACnet">
<SequenceOfBitString>
<BitString>101</BitString>
<BitString>1</BitString>
<BitString>1</BitString>
</SequenceOfBitString>
</Value>