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