I want to get a value of an attribute by HtmlAgilityPack. Html code:
Ok, I came to this:
var link = htmldoc.DocumentNode.SelectSingleNode("//link[@itemprop='thumbnailUrl']"); var href = link.Attributes["href"].Value;