public BG9xMqttClient(BG9x module, ILogger logger, string hostname, int port, string clientID) { _module = module; this.logger = logger; Hostname = hostname; Port = port; ClientID = clientID; }
public BG9xMqttClient(BG9x module, ILogger logger, string hostname, int port, string clientID, string username, string password) : this(module, logger, hostname, port, clientID) { Username = username; Password = password; }