【发布时间】:2014-03-21 22:44:17
【问题描述】:
如何在此 XML 页面中阅读更多类别? http://feeds.feedburner.com/passionea300allora?format=xml
因为,现在我用它来阅读信息:
var RSSdata = from rss in XElement.Parse(e.Result).Descendants("item")
select new RSSItem
{
Title1 = rss.Element("title").Value,
Description1 = rss.Element("description").Value,
Link1 = rss.Element("link").Value,
PubDate1 = rss.Element("pubDate").Value,
Category1 = rss.Element("category").Value
};
但是这个报告我只是第一类(在第一个新闻中,目前,它是第 19 行的“Regolamento”)。 我需要阅读更多类别,如果可能的话,还需要作者姓名
【问题讨论】:
标签: c# xml windows-phone