25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

17 lines
408 B

  1. using System.Collections.Generic;
  2. using System.Net;
  3. namespace MQTTnet.Core.Client
  4. {
  5. public class MqttClientWebSocketOptions : BaseMqttClientOptions
  6. {
  7. public string Uri { get; set; }
  8. public IDictionary<string, string> RequestHeaders { get; set; }
  9. public ICollection<string> SubProtocols { get; set; }
  10. public CookieContainer CookieContainer { get; set; }
  11. }
  12. }