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.
|
- 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 int BufferSize { get; set; } = 4096;
-
- public MqttClientTlsOptions TlsOptions { get; set; } = new MqttClientTlsOptions();
- }
- }
|