Du kan inte välja fler än 25 ämnen
Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
|
- 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 int BufferSize { get; set; } = 4096;
-
- public MqttClientTlsOptions TlsOptions { get; set; } = new MqttClientTlsOptions();
- }
- }
|