| 12345678910111213141516171819202122232425 |
- using System.Collections.Generic;
- using System.Net;
- namespace MQTTnet.Client.Options
- {
- 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 MqttClientWebSocketProxyOptions ProxyOptions { get; set; }
- public MqttClientTlsOptions TlsOptions { get; set; } = new MqttClientTlsOptions();
- public override string ToString()
- {
- return Uri;
- }
- }
- }
|