25'ten fazla konu seçemezsiniz
Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
|
- 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;
- }
- }
- }
|