I'm using System.Xml to read a xml file in C#. First I open the file (locally)... and use foreach to get the values, like this:

XmlNodeList titles = xmlDoc.GetElementsByTagName("title");
foreach (XmlNode title in titles)
{
rowNews = new ListViewItem();
rowNews.Text = (title.ChildNodes[0].Value);
listView1.Items.Add(rowNews);
}

The problem is, I have many rss tags called title in my file, I'd like to read only those what are inside <entry></entry>?

link|improve this question

feedback

5 Answers

up vote 0 down vote accepted

See ParentNode and LocalName properties:

if (title.ParentNode.LocalName == "entry") { ... }
link|improve this answer
Thank you sir, I like your way the best and it works! Thank you everyone else also! – Badr Hari Oct 12 '10 at 16:49
The XPath approaches are good too. This is just a simpler way to do things if you are familiar with DOM and not with XPath. – LarsH Oct 12 '10 at 18:31
feedback

Usually its easier to use XPaths in this case, so your code would look something like this:

XmlNodeList titles = xmlDoc.SelectNodes("//entry/title");
foreach (XmlNode title in titles)
{
rowNews = new ListViewItem();
rowNews.Text = (title.ChildNodes[0].Value);
listView1.Items.Add(rowNews);
}
link|improve this answer
feedback

I suggest using XDocument in the System.Xml.Linq namespace.

Then you can simply write document.Elements("entry").Elements("title")

link|improve this answer
feedback

here's a hint, look at how you iterate through the first "title" node.

link|improve this answer
feedback

Have you tried something like entry/title as your xpath?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.