using System.Collections.Generic; using System.Net; namespace MQTTnet.Client { public class MqttClientWebSocketOptions : IMqttClientChannelOptions { public string Uri { get; set; } public IDictionary RequestHeaders { get; set; } public ICollection SubProtocols { get; set; } public CookieContainer CookieContainer { get; set; } public MqttClientTlsOptions TlsOptions { get; set; } = new MqttClientTlsOptions(); } }