Explorar el Código

Add methods for client options builder

release/3.x.x
Christian Kratky hace 7 años
padre
commit
522a385523
Se han modificado 1 ficheros con 19 adiciones y 0 borrados
  1. +19
    -0
      MQTTnet.Core/Client/MqttClientOptionsBuilder.cs

+ 19
- 0
MQTTnet.Core/Client/MqttClientOptionsBuilder.cs Ver fichero

@@ -1,4 +1,5 @@
using System;
using System.Linq;
using MQTTnet.Core.Serializer;

namespace MQTTnet.Core.Client
@@ -79,6 +80,24 @@ namespace MQTTnet.Core.Client
return this;
}

public MqttClientOptionsBuilder WithTls(
bool allowUntrustedCertificates = false,
bool ignoreCertificateChainErrors = false,
bool ignoreCertificateRevocationErrors = false,
params byte[][] certificates)
{
_tlsOptions = new MqttClientTlsOptions
{
UseTls = true,
AllowUntrustedCertificates = allowUntrustedCertificates,
IgnoreCertificateChainErrors = ignoreCertificateChainErrors,
IgnoreCertificateRevocationErrors = ignoreCertificateRevocationErrors,
Certificates = certificates.ToList()
};

return this;
}

public MqttClientOptionsBuilder WithTls()
{
_tlsOptions = new MqttClientTlsOptions


Cargando…
Cancelar
Guardar