I need to make request to a secure server. In order to authenticate in postman, I send over a .cer and .key + password
But how can I add .key + password to a WebRequest in C#?
X509Certificate2 certificate = new X509Certificate2("~/Cert/mykey-wru.key", "PASSWORD");
...doenst work...