Você não pode selecionar mais de 25 tópicos
Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
|
- 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();
- }
- }
|