|
天嵌二次封装库使用手册
V2.1.2
|
#include <MQTTProperties.h>

Public 属性 | |
| enum MQTTPropertyCodes | identifier |
| union { | |
| unsigned char byte | |
| unsigned short integer2 | |
| unsigned int integer4 | |
| struct { | |
| MQTTLenString data | |
| MQTTLenString value | |
| } | |
| } | value |
Structure to hold an MQTT version 5 property of any type
在文件 MQTTProperties.h 第 94 行定义.
| unsigned char MQTTProperty::byte |
holds the value of a byte property type
在文件 MQTTProperties.h 第 99 行定义.
| MQTTLenString MQTTProperty::data |
The value of a string property, or the name of a user property.
在文件 MQTTProperties.h 第 103 行定义.
| enum MQTTPropertyCodes MQTTProperty::identifier |
The MQTT V5 property id. A multi-byte integer.
在文件 MQTTProperties.h 第 96 行定义.
| unsigned short MQTTProperty::integer2 |
holds the value of a 2 byte integer property type
在文件 MQTTProperties.h 第 100 行定义.
| unsigned int MQTTProperty::integer4 |
holds the value of a 4 byte integer property type
在文件 MQTTProperties.h 第 101 行定义.
| MQTTLenString MQTTProperty::value |
The value of a user property.
在文件 MQTTProperties.h 第 104 行定义.
| union { ... } MQTTProperty::value |
The value of the property, as a union of the different possible types.