Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 
 

20 linhas
439 B

  1. using System;
  2. namespace MQTTnet.Core.Server
  3. {
  4. public static class MqttServerTlsEndpointOptionsExtensions
  5. {
  6. public static int GetPort(this DefaultEndpointOptions options)
  7. {
  8. if (options == null) throw new ArgumentNullException(nameof(options));
  9. if (!options.Port.HasValue)
  10. {
  11. return 1883;
  12. }
  13. return options.Port.Value;
  14. }
  15. }
  16. }