No puede seleccionar más de 25 temas
Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
|
- 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();
- }
- }
|