Du kan inte välja fler än 25 ämnen
Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
|
- 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;
- }
- }
- }
|