gpt4 book ai didi

c# - 使用 SyndicationFeed 读取 SyndicationItem 中的非标准元素

转载 作者:IT王子 更新时间:2023-10-29 04:03:08 25 4
gpt4 key购买 nike

在 .net 3.5 中,有一个 SyndicationFeed 将加载 RSS 提要并允许您在其上运行 LINQ。

这是我正在加载的 RSS 示例:

<rss version="2.0" xmlns:media="http://search.yahoo.com/mrss/"> 
<channel>
<title>Title of RSS feed</title>
<link>http://www.google.com</link>
<description>Details about the feed</description>
<pubDate>Mon, 24 Nov 08 21:44:21 -0500</pubDate>
<language>en</language>
<item>
<title>Article 1</title>
<description><![CDATA[How to use StackOverflow.com]]></description>
<link>http://youtube.com/?v=y6_-cLWwEU0</link>
<media:player url="http://youtube.com/?v=y6_-cLWwEU0" />
<media:thumbnail url="http://img.youtube.com/vi/y6_-cLWwEU0/default.jpg" width="120" height="90" />
<media:title>Jared on StackOverflow</media:title>
<media:category label="Tags">tag1, tag2</media:category>
<media:credit>Jared</media:credit>
<enclosure url="http://youtube.com/v/y6_-cLWwEU0.swf" length="233" type="application/x-shockwave-flash"/>
</item>
</channel>

当我循环遍历项目时,我可以通过 SyndicationItem 的公共(public)属性取回标题和链接。

我似乎无法弄清楚如何获取附件标签的属性或媒体标签的值。我尝试使用

SyndicationItem.ElementExtensions.ReadElementExtensions<string>("player", "http://search.yahoo.com/mrss/")

对其中任何一个有帮助吗?

最佳答案

这应该让您知道如何去做:

using System.Linq;
using System.ServiceModel.Syndication;
using System.Xml;
using System.Xml.Linq;

SyndicationFeed feed = reader.Read();

foreach (var item in feed.Items)
{
foreach (SyndicationElementExtension extension in item.ElementExtensions)
{
XElement ele = extension.GetObject<XElement>();
Console.WriteLine(ele.Value);
}
}

关于c# - 使用 SyndicationFeed 读取 SyndicationItem 中的非标准元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/319591/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com