Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
 

22 lignes
557 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. TimeSpan? KeepAliveSendInterval { get; }
  14. MqttProtocolVersion ProtocolVersion { get; }
  15. IMqttClientChannelOptions ChannelOptions { get; }
  16. }
  17. }