使用System.Net.WebRequest.Create(url)抓取某网站信息时 ,出现“未能创建 SSL/TLS 安全通道”此条异常信息
解决方案
引用:using System.Net;
在请求之前插入TLS安全协议:System.Net.ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12;
如图: