XDocument.Descendants(itemName) - Problems finding qualified name
问题 I'm trying to read a XML-RSS-Feed from a website. Therefore I use a async download and create a XDocument with the XDocument.Parse() Method. The Document intends to be very simple, like this: <root> <someAttribute></SomeAttribute> <item>...</item> <item>...</item> </root> Now I want to read out all the items. Therefore I tried: foreach (XElement NewsEntry in xDocument.Descendants("item")) but this doesn't work. So I found a post in this board to use the qualified name, because there are some