You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

MqttClientOptions.cs 711 B

7 years ago
7 years ago
7 years ago
7 years ago
12345678910111213141516171819202122232425
  1. using System;
  2. namespace MQTTnet.Core.Client
  3. {
  4. public sealed class MqttClientOptions
  5. {
  6. public string Server { get; set; }
  7. public int? Port { get; set; }
  8. public MqttClientTlsOptions TlsOptions { get; } = new MqttClientTlsOptions();
  9. public string UserName { get; set; }
  10. public string Password { get; set; }
  11. public string ClientId { get; set; } = Guid.NewGuid().ToString().Replace("-", string.Empty);
  12. public bool CleanSession { get; set; } = true;
  13. public TimeSpan KeepAlivePeriod { get; set; } = TimeSpan.FromSeconds(5);
  14. public TimeSpan DefaultCommunicationTimeout { get; set; } = TimeSpan.FromSeconds(10);
  15. }
  16. }