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.
 
 
 
 

18 lines
518 B

  1. using System;
  2. using MQTTnet.Core.Serializer;
  3. namespace MQTTnet.Core.Client
  4. {
  5. public interface IMqttClientOptions
  6. {
  7. bool CleanSession { get; }
  8. string ClientId { get; }
  9. TimeSpan DefaultCommunicationTimeout { get; }
  10. TimeSpan KeepAlivePeriod { get; }
  11. string Password { get; }
  12. MqttProtocolVersion ProtocolVersion { get; }
  13. MqttClientTlsOptions TlsOptions { get; }
  14. string UserName { get; }
  15. MqttApplicationMessage WillMessage { get; }
  16. }
  17. }