Connected Property
Triggers a connection or disconnection.
Syntax
property Connected: Boolean read get_Connected write set_Connected;
Default Value
false
Remarks
This property triggers a connection or disconnection. Setting this property to True makes the component send a CONNECT packet to the MQTTSN Gateway identified by the RemoteHost property. If successful, after the connection is achieved the value of the property changes to True and the Connected event is fired.
Setting this property to False sends a DISCONNECT packet, closing the connection.
When connecting to an MQTT gateway, the component sends the following information:
- The values of the ClientId, CleanSession, and KeepAliveInterval properties.
- The values of the WillTopic and WillMessage properties and the WillRetain and WillQOS configuration settings.
Refer to CleanSession for more information about MQTT sessions; refer to WillTopic, WillMessage, WillQOS and WillRetain for more information about MQTT Wills.
Basic Connection Example
mqttsn1.ClientId =
"testClient"
;
mqttsn1.CleanSession =
true
;
mqttsn1.KeepAliveInterval = 30;
mqttsn1.WillTopic =
"wills/"
+ mqttsn1.ClientId;
mqttsn1.WillMessage = mqttsn1.ClientId +
" was disconnected ungracefully!"
;
mqttsn1.Connect(host, port);
This property is not available at design time.