I am not sure what you are trying to parse out of that HTML. But, for example, if you need href of all anchor tags, you could do:
Yeah, unfortunately, I don't find complete documentation as well. Would be nice if anyone could point out where to look for.
foreach (var link in doc.DocumentNode.SelectNodes("//a[@href]"))
{
foreach (var linkAtt in link.Attributes)
{
linkAtt.Value.Dump();
}
}
And you can change parameter for SelectNodes method to be be "//td" or "//div"Yeah, unfortunately, I don't find complete documentation as well. Would be nice if anyone could point out where to look for.