';HtmlAgilityPack.HtmlNode';不包含';选择Nodes';

本文关键字:选择 Nodes 包含 HtmlNode HtmlAgilityPack | 更新日期: 2023-09-27 18:06:04

"HtmlAgilityPack.HtmlNode"不包含"SelectNodes"的定义,也找不到接受第一个类型为"HtmlAgilityPack.HtmlNode"的参数的扩展方法"SelectNode斯"(是否缺少using指令或程序集引用?(

我有设置配置,例如:

这就是密码!!!

HttpClient client = new HttpClient();
        string html = await client.GetStringAsync(Url);
        HtmlDocument htmlDocument = new HtmlDocument();
        htmlDocument.LoadHtml(html);
        var a =htmlDocument.DocumentNode.SelectNodes("//p[@class='verse']");

';HtmlAgilityPack.HtmlNode';不包含';选择Nodes';

Windows Phone的HAP版本没有公开SelectNodes()方法,因为缺少可用于WP的XPath支持。你需要求助于使用HAP LINQ API来做同样的事情:

var a = htmlDocument.DocumentNode
                    .Descendants("p")
                    .Where(p => p.GetAttributeValue("class","") == "verse");