0

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 が含まれています。私が使用しているこの手順は大丈夫ですか?

4

1 に答える 1