Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
|
- 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; }
- }
- }
|