我想从rss Feed中读取一些数据。我用:
XmlReader reader = XmlReader.Create([THE FEED URL]);
SyndicationFeed feed = SyndicationFeed.Load(reader);
foreach (SyndicationItem item in feed.Items)
{
// do what you want with the feed data
}
问题是它没有物品。但它有两个元素扩展,包含所有项目。 我该如何提取数据?我如何获得自定义字段?当我尝试使用包含项目的Feed时,我唯一可以获得的是Title,Description和Link等等,但我希望获得一些自定义属性。
<rss version="2.0">
<channel>
<title></title>
<link>...</link>
<description>List of enabled mobile telephones</description>
<telephones>...</telephones>
<subscriptions>...</subscriptions>
</channel>
</rss>
电话节点包含一个项目列表。