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.
 
 
 
 

20 lines
507 B

  1. using System;
  2. using MQTTnet.Serializer;
  3. namespace MQTTnet.Client
  4. {
  5. public interface IMqttClientOptions
  6. {
  7. string ClientId { get; }
  8. IMqttClientCredentials Credentials { get; }
  9. bool CleanSession { get; }
  10. MqttApplicationMessage WillMessage { get; }
  11. TimeSpan CommunicationTimeout { get; }
  12. TimeSpan KeepAlivePeriod { get; }
  13. MqttProtocolVersion ProtocolVersion { get; }
  14. IMqttClientChannelOptions ChannelOptions { get; }
  15. }
  16. }