http://www.aspemail.com
このリンクを で読もうとし ていHtmlAtiligtyPack
ます。しかし、head セクションの読み取りに失敗し、null を返します。
HtmlAgilityPack.HtmlDocument htmlDocument = new HtmlDocument();
System.Net.WebClient webClient = new System.Net.WebClient();
string download = webClient.DownloadString(linkDetails.Url);
htmlDocument.LoadHtml(download);
HtmlNode htmlNode = htmlDocument.DocumentNode.SelectSingleNode("html/head");
しかし、配置されたブレークポイントを確認すると、htmlNode に null が含まれています。私が使用しているこの手順は大丈夫ですか?