Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

MqttClientTcpOptions.cs 194 B

7 lat temu
123456789
  1. namespace MQTTnet.Core.Client
  2. {
  3. public class MqttClientTcpOptions : BaseMqttClientOptions
  4. {
  5. public string Server { get; set; }
  6. public int? Port { get; set; }
  7. }
  8. }