public static void Main()
HtmlDocument someDoc = new HtmlDocument();
someDoc.Load("https://pubchem.ncbi.nlm.nih.gov/rest/pug_view/data/patent/WO-9100508-A1/XML/");
foreach (HtmlNode nodeRss in someDoc.DocumentNode.SelectNodes("rss"))
Console.WriteLine(nodeRss.Attributes["version"].Value);
foreach (HtmlNode aNode2 in nodeRss.SelectNodes("channel"))
Console.WriteLine(aNode2.ChildNodes.Count());
foreach (HtmlNode aNode3 in aNode2.SelectNodes("item"))
Console.WriteLine(aNode3.SelectSingleNode("title").InnerText);
Console.WriteLine(aNode3.SelectSingleNode("link").NextSibling.InnerText);
Console.WriteLine(aNode3.SelectSingleNode(".//*[name()='wp:status']").InnerText);
Console.WriteLine(aNode3.SelectSingleNode(".//*[name()='content:encoded']").InnerHtml.Replace("![CDATA[", "").Replace("]]", ""));