您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 

29 行
833 B

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