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ů.
|
- using System.Collections.Generic;
- using System.Net;
-
- namespace MQTTnet.Client
- {
- public class MqttClientWebSocketOptions : IMqttClientChannelOptions
- {
- public string Uri { get; set; }
-
- public IDictionary<string, string> RequestHeaders { get; set; }
-
- public ICollection<string> SubProtocols { get; set; } = new List<string> { "mqtt" };
-
- public CookieContainer CookieContainer { get; set; }
-
- public MqttClientTlsOptions TlsOptions { get; set; } = new MqttClientTlsOptions();
- }
- }
|