I am trying to use the HtmlAgilityPack to finds elements within a website. My Problem is the following:
I created a Windows 8 universal app (c#)
With the NuG
Yes, SelectNodes is not available on WP8 but you can use;
SelectNodes
var metaTags = myDocument.DocumentNode.Descendants("meta");
instead.