如何将证书添加到最新版本的restsharp

How to add a certificate to the last version of restsharp

似乎在这个库的最新版本中改变了在发布请求时包含证书的方式。

我使用以下:

var certFile = "xxxxxxx.pfx";

X509Certificate2 证书 = new X509Certificate2(certFile, "pass");

request.ClientCertificates = new X509CertificateCollection() { 证书 };

但在上一个版本中,“ClientCertificates”方法不再存在。

现在有人知道包含证书的方式吗?

谢谢!!

它在 migration guide

var options = new RestClientOptions(baseUri) {
    ClientCertificates = ...
};
var client = new RestClient(options);