Browse Source

blind uwp fix

release/3.x.x
Anton Yaroshenko 5 years ago
parent
commit
ac326babdf
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      Source/MQTTnet/Implementations/MqttTcpChannel.Uwp.cs

+ 1
- 1
Source/MQTTnet/Implementations/MqttTcpChannel.Uwp.cs View File

@@ -132,7 +132,7 @@ namespace MQTTnet.Implementations
throw new NotSupportedException("Only one client certificate is supported for UWP.");
}

return new Certificate(options.TlsOptions.Certificates.First().AsBuffer());
return new Certificate(options.TlsOptions.Certificates.First().GetRawCertData());
}

private IEnumerable<ChainValidationResult> ResolveIgnorableServerCertificateErrors()


Loading…
Cancel
Save