Does the xml look like this: <text>Text you're trying to read</text>
Assuming the above is true, you can create a list of text strings like this:
HtmlWeb.LoadAsync("http://feeds.feedburner.com/nownews/politic", handleResults); public void handleResults(object o, HtmlDocumentLoadCompleted args) { IEnumerable<string> textList = args.Document.DocumentNode.Descendants("text").Select(x => x.InnerText); }