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

MqttClientWebSocketOptions.cs 499 B

před 7 roky
před 7 roky
před 7 roky
123456789101112131415161718
  1. using System.Collections.Generic;
  2. using System.Net;
  3. namespace MQTTnet.Client
  4. {
  5. public class MqttClientWebSocketOptions : IMqttClientChannelOptions
  6. {
  7. public string Uri { get; set; }
  8. public IDictionary<string, string> RequestHeaders { get; set; }
  9. public ICollection<string> SubProtocols { get; set; }
  10. public CookieContainer CookieContainer { get; set; }
  11. public MqttClientTlsOptions TlsOptions { get; set; } = new MqttClientTlsOptions();
  12. }
  13. }