Вы не можете выбрать более 25 тем
Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
|
- using System.Collections.Generic;
-
- namespace MQTTnet.Core.Client
- {
- public class MqttClientTlsOptions
- {
- public bool UseTls { get; set; }
-
- public bool IgnoreCertificateRevocationErrors { get; set; }
-
- public bool IgnoreCertificateChainErrors { get; set; }
-
- public bool AllowUntrustedCertificates { get; set; }
-
- public List<byte[]> Certificates { get; set; }
- }
- }
|