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.
 
 
 
 

28 rivejä
850 B

  1. using System;
  2. using MQTTnet.Core.Serializer;
  3. namespace MQTTnet.Core.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. /// <inheritdoc />
  10. public string LogId { get; set; }
  11. public bool CleanSession { get; set; } = true;
  12. public IMqttClientCredentials Credentials { get; set; } = new MqttClientCredentials();
  13. public TimeSpan KeepAlivePeriod { get; set; } = TimeSpan.FromSeconds(5);
  14. public TimeSpan CommunicationTimeout { get; set; } = TimeSpan.FromSeconds(10);
  15. public MqttProtocolVersion ProtocolVersion { get; set; } = MqttProtocolVersion.V311;
  16. public IMqttClientChannelOptions ChannelOptions { get; set; }
  17. }
  18. }