Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
|
- using System;
-
- namespace MQTTnet.Core.Client
- {
- public static class MqttClientTcpOptionsExtensions
- {
- public static int GetPort(this MqttClientTcpOptions options)
- {
- if (options == null) throw new ArgumentNullException(nameof(options));
-
- if (options.Port.HasValue)
- {
- return options.Port.Value;
- }
-
- return !options.TlsOptions.UseTls ? 1883 : 8883;
- }
- }
- }
|