<< Clique para Mostrar o Sumário >>
BACnetLogData_Unnamed |
Esta representação de dados complexos via XML é utilizada internamente em outros XMLs suportados pelo driver.
<xs:complexType name="BACnetLogData_Unnamed">
<xs:sequence>
<xs:choice>
<xs:element name="BooleanValue" type="Boolean" />
<xs:element name="RealValue" type="REAL" />
<xs:element name="EnumeratedValue" type="Enumerated" />
<xs:element name="UnsignedValue" type="Unsigned" />
<xs:element name="IntegerValue" type="INTEGER" />
<xs:element name="BitstringValue" type="BitString" />
<xs:element name="NullValue" type="Null" />
<xs:element name="Failure" type="Error" />
<xs:element name="AnyValue" type="Any" />
</xs:choice>
</xs:sequence>
</xs:complexType>
Exemplo 1:
<BACnetLogData_Unnamed>
<BooleanValue>true</BooleanValue>
</BACnetLogData_Unnamed>
Exemplo 2:
<BACnetLogData_Unnamed>
<RealValue>1234.567749</RealValue>
</BACnetLogData_Unnamed>
Exemplo 3:
<BACnetLogData_Unnamed>
<EnumeratedValue>1</EnumeratedValue>
</BACnetLogData_Unnamed>
Exemplo 4:
<BACnetLogData_Unnamed>
<UnsignedValue>1236</UnsignedValue>
</BACnetLogData_Unnamed>
Exemplo 5:
<BACnetLogData_Unnamed>
<IntegerValue>-797</IntegerValue>
</BACnetLogData_Unnamed>
Exemplo 6:
<BACnetLogData_Unnamed>
<BitstringValue>1</BitstringValue>
</BACnetLogData_Unnamed>
Exemplo 7:
<BACnetLogData_Unnamed>
<NullValue />
</BACnetLogData_Unnamed>
Exemplo 8:
<BACnetLogData_Unnamed>
<Failure>
<ErrorClass>security</ErrorClass>
<ErrorCode>inconsistentParameters</ErrorCode>
</Failure>
</BACnetLogData_Unnamed>
Exemplo 9:
<BACnetLogData_Unnamed>
<AnyValue>
<Boolean>true</Boolean>
</AnyValue>
</BACnetLogData_Unnamed>