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ů.

MqttClientTcpOptions.cs 343 B

před 7 roky
před 7 roky
před 7 roky
12345678910111213
  1. namespace MQTTnet.Client
  2. {
  3. public class MqttClientTcpOptions : IMqttClientChannelOptions
  4. {
  5. public string Server { get; set; }
  6. public int? Port { get; set; }
  7. public int BufferSize { get; set; } = 20 * 4096;
  8. public MqttClientTlsOptions TlsOptions { get; set; } = new MqttClientTlsOptions();
  9. }
  10. }