我将应用程序部署到服务器时出现以下错误,但在本地调试时没有出现此错误:
System.TypeLoadException:无法从程序集System.Net.Primitives加载类型System.Security.Authentication.SslProtocols,版本= 4.0.0.0
基本上,我试图通过以下方式使用API:
using (HttpClient client = new HttpClient(new HttpClientHandler() { UseDefaultCredentials = true }))
{
//Do things here
}
似乎它在使用声明中爆炸了。有人遇到过这个吗?我无法在本地重现这一点,这很奇怪。