Class MqttConfig
- Namespace
- SmarterLink.Bootstrapping
- Assembly
- SmarterLink.Bootstrapping.dll
MQTT broker connection settings.
public record MqttConfig : IEquatable<MqttConfig>
- Inheritance
-
MqttConfig
- Implements
- Inherited Members
Constructors
MqttConfig(string, string?, int?, string?, string?)
MQTT broker connection settings.
public MqttConfig(string ClientId, string? Host = null, int? Port = null, string? Username = null, string? Password = null)
Parameters
Properties
ClientId
public string ClientId { get; init; }
Property Value
Host
public string? Host { get; init; }
Property Value
Password
public string? Password { get; init; }
Property Value
Port
public int? Port { get; init; }
Property Value
- int?
Username
public string? Username { get; init; }