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.
 
 
 
 

20 lignes
459 B

  1. using System;
  2. namespace MQTTnet.Client
  3. {
  4. public static class MqttClientTcpOptionsExtensions
  5. {
  6. public static int GetPort(this MqttClientTcpOptions options)
  7. {
  8. if (options == null) throw new ArgumentNullException(nameof(options));
  9. if (options.Port.HasValue)
  10. {
  11. return options.Port.Value;
  12. }
  13. return !options.TlsOptions.UseTls ? 1883 : 8883;
  14. }
  15. }
  16. }