标签: wcf ssl binding client certificate
是否可以在WCF绑定中附加客户端SSL文件(.pfx)文件?我不想使用证书存储。
答案 0 :(得分:2)
这应该有效
webServiceProxyInstance.ClientCredentials.ClientCertificate.Certificate = new X509Certificate2("path to the pfx file", "password to open the private key");