Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 

24 righe
716 B

  1. using System;
  2. using MQTTnet.Core.Serializer;
  3. namespace MQTTnet.Core.Client
  4. {
  5. public interface IMqttClientOptions
  6. {
  7. string ClientId { get; }
  8. /// <summary>
  9. /// The LogId is used to create a scope to correlate logging. If no value is provided the ClientId is used instead
  10. /// </summary>
  11. string LogId { get; }
  12. IMqttClientCredentials Credentials { get; }
  13. bool CleanSession { get; }
  14. MqttApplicationMessage WillMessage { get; }
  15. TimeSpan CommunicationTimeout { get; }
  16. TimeSpan KeepAlivePeriod { get; }
  17. MqttProtocolVersion ProtocolVersion { get; }
  18. IMqttClientChannelOptions ChannelOptions { get; }
  19. }
  20. }