In the older versions of the Hl7.Fhir.Rest API i could use the OnBeforeRequest method and the ClientCertificates property of the message handler to add a client certifcate.
E.g.:
e.RawRequest.ClientCertificates = new X509CertificateCollection();
e.RawRequest.ClientCertificates.Add(_applicationSettings.GetClientCertificate());
In the latest versions the ClientCertificates property of the RawRequest is not available anymore. Can anyone tell me how i can add a client certificate using the recent versions of the library?
Thanks in advance,