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.

MqttClientOptions.cs 711 B

il y a 7 ans
il y a 7 ans
il y a 7 ans
il y a 7 ans
12345678910111213141516171819202122232425
  1. using System;
  2. namespace MQTTnet.Core.Client
  3. {
  4. public sealed class MqttClientOptions
  5. {
  6. public string Server { get; set; }
  7. public int? Port { get; set; }
  8. public MqttClientSslOptions SslOptions { get; } = new MqttClientSslOptions();
  9. public string UserName { get; set; }
  10. public string Password { get; set; }
  11. public string ClientId { get; set; } = Guid.NewGuid().ToString().Replace("-", string.Empty);
  12. public bool CleanSession { get; set; } = true;
  13. public TimeSpan KeepAlivePeriod { get; set; } = TimeSpan.FromSeconds(5);
  14. public TimeSpan DefaultCommunicationTimeout { get; set; } = TimeSpan.FromSeconds(10);
  15. }
  16. }