|
12345678910111213141516171819202122232425262728293031 |
- using System;
-
- namespace MQTTnet.Core.Server
- {
- public static class MqttServerOptionsExtensions
- {
- public static int GetTlsEndpointPort(this MqttServerOptions options)
- {
- if (options == null) throw new ArgumentNullException(nameof(options));
-
- if (!options.TlsEndpointOptions.Port.HasValue)
- {
- return 8883;
- }
-
- return options.TlsEndpointOptions.Port.Value;
- }
-
- public static int GetDefaultEndpointPort(this MqttServerOptions options)
- {
- if (options == null) throw new ArgumentNullException(nameof(options));
-
- if (!options.DefaultEndpointOptions.Port.HasValue)
- {
- return 1883;
- }
-
- return options.DefaultEndpointOptions.Port.Value;
- }
- }
- }
|