試圖從HTTPS URL下載XML文件(https://nvd.nist.gov/download/nvd-rss.xml)WebClient的錯誤從https下載文件時,URL
此URL是通過瀏覽器公開訪問。
在控制檯項目中使用C#Webclient。
但越來越異常,如下
using (WebClient client = new WebClient())
{
System.Net.ServicePointManager.SecurityProtocol = System.Net.SecurityProtocolType.Ssl3;
client.DownloadFile(uri, @"c:\test\nvd-rss.xml");
}
$ {例外「的基礎連接已關閉:上一個發送發生意外的錯誤」} System.Net.WebException
嘗試添加的所有屬性,如SSL等system.Net,但沒有幫助。
感謝您的解答和解釋。這工作完美。 –
好!請標記爲答案以幫助其他有類似問題的人更快地找到答案。 – Evk