Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

MqttServerOptionsExtensions.cs 841 B

12345678910111213141516171819202122232425262728293031
  1. using System;
  2. namespace MQTTnet.Core.Server
  3. {
  4. public static class MqttServerOptionsExtensions
  5. {
  6. public static int GetTlsEndpointPort(this MqttServerOptions options)
  7. {
  8. if (options == null) throw new ArgumentNullException(nameof(options));
  9. if (!options.TlsEndpointOptions.Port.HasValue)
  10. {
  11. return 8883;
  12. }
  13. return options.TlsEndpointOptions.Port.Value;
  14. }
  15. public static int GetDefaultEndpointPort(this MqttServerOptions options)
  16. {
  17. if (options == null) throw new ArgumentNullException(nameof(options));
  18. if (!options.DefaultEndpointOptions.Port.HasValue)
  19. {
  20. return 1883;
  21. }
  22. return options.DefaultEndpointOptions.Port.Value;
  23. }
  24. }
  25. }