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.
 
 
 
 

21 lignes
658 B

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