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

25 行
770 B

  1. using System;
  2. using MQTTnet.Serializer;
  3. namespace MQTTnet.Client
  4. {
  5. public class MqttClientOptions : IMqttClientOptions
  6. {
  7. public MqttApplicationMessage WillMessage { get; set; }
  8. public string ClientId { get; set; } = Guid.NewGuid().ToString("N");
  9. public bool CleanSession { get; set; } = true;
  10. public IMqttClientCredentials Credentials { get; set; } = new MqttClientCredentials();
  11. public TimeSpan KeepAlivePeriod { get; set; } = TimeSpan.FromSeconds(5);
  12. public TimeSpan CommunicationTimeout { get; set; } = TimeSpan.FromSeconds(10);
  13. public MqttProtocolVersion ProtocolVersion { get; set; } = MqttProtocolVersion.V311;
  14. public IMqttClientChannelOptions ChannelOptions { get; set; }
  15. }
  16. }