25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

22 lines
1003 B

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