Class MqttBroker
Mqtt Broker Info
[DataContract]
public class MqttBroker : NamedIdentifiedItem
- Inheritance
-
MqttBroker
- Inherited Members
Properties
Authentication
Authentication settings of the MQTT broker
[ApiAccess(ApiAccess.ReadWrite)]
[DataMember(Name = "authentication")]
public MqttAuthentication Authentication { get; set; }
Property Value
Host
Host name/IP address where the MQTT broker runs.
[ApiAccess(ApiAccess.ReadWrite)]
[DataMember(Name = "host")]
public string Host { get; set; }
Property Value
Port
Host port though which the MQTT broker can be reached.
[ApiAccess(ApiAccess.ReadWrite)]
[DataMember(Name = "port")]
public int Port { get; set; }
Property Value
Security
Security settings of the MQTT broker.
[ApiAccess(ApiAccess.ReadWrite)]
[DataMember(Name = "security")]
public MqttSecurity Security { get; set; }