SyndicationFeed:如何访问内容:编码?

时间:2013-05-18 16:32:54

标签: c# windows-8 windows-runtime syndication-feed

在Windows 8商店应用程序中,我正在使用SyndicationFeed读取一些Xml数据。 RSS提要的一些项目包含例如content:encoded(xmlns:content ='...')元素。我认为没有办法通过SyndicationItem获取这些元素的内容?!

这就是为什么我在我的foreach(SyndicationItem item in feeditems)里面尝试这样的事情:

item.GetXmlDocument(feed.SourceFormat).SelectSingleNode("/item/*:encoded]").InnerText;

但这不起作用。我要注意如何在winrt中使用NamespaceManager等。现在我正在访问内容:通过其他元素的NextSibling方法编码,但这不是一个干净的方式。

那么如何最好地访问元素的内容呢?

<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0" xmlns:content="URI">
<channel>

 <.../>

 <item>
  <title>Example entry</title>
  <description>Here is some text containing an interesting description.</description>
  <link>http://www.wikipedia.org/</link>
  <content:encoded>Content I try to access</content:encoded>
 </item>

</channel>
</rss> 

2 个答案:

答案 0 :(得分:2)

只需使用XNamespace

即可
XNamespace content = "URI";

var items = XDocument.Parse(xml)
                .Descendants("item")
                .Select(i => new
                {
                    Title = (string)i.Element("title"),
                    Description = (string)i.Element("description"),
                    Link = (string)i.Element("link"),
                    Encoded = (string)i.Element(content + "encoded"), //<-- ***

                })
                .ToList();

答案 1 :(得分:2)

试试这个

var items = XDocument.Parse(xml)
                .Descendants("item")
                .Select(i => new
                {
                    Title = (string)i.Element("title"),
                    Description = (string)i.Element("description"),
                    Link = (string)i.Element("link"),
                    Encoded = (string)i.Element("{http://purl.org/rss/1.0/modules/content/}encoded"), //<-- ***

                })
                .ToList();

{{1}}