Nelze vybrat více než 25 témat
Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
|
- using System;
-
- namespace MQTTnet.Core.Server
- {
- public static class MqttServerTlsEndpointOptionsExtensions
- {
- public static int GetPort(this DefaultEndpointOptions options)
- {
- if (options == null) throw new ArgumentNullException(nameof(options));
-
- if (!options.Port.HasValue)
- {
- return 1883;
- }
-
- return options.Port.Value;
- }
- }
- }
|