带有自定义属性的自定义RSS元素

本文关键字:RSS 元素 自定义 自定义属性 | 更新日期: 2023-09-27 18:15:56

我正在设置一个带有一些自定义元素的自定义rss提要。我需要添加一个带有自定义属性的自定义元素。

到目前为止,我已经设置了一个提要,如下所示:
var testItem = new SyndicationItem("title", "description", new Uri("http://myuri.com"));
customItem.ElementExtensions.Add("customElement", String.Empty, "fooBar");

将testtem添加到名为"items"的列表中,然后:

var feed = new SyndicationFeed("TestFeed", "FeedContent", new Uri("http://myuri.com"), items);

这将产生如下内容:

<rss>
  <channel>
    <title>TestFeed</title>
    <link>http://myuri.com</link>
    <description>FeedContent</description>
    <item>
      <link>http://myprovider.com/contentid=1234</link>
      <title>title</title>
      <description>description</description>
      <customElement>fooBar</customElement>
    </item>
  </channel>
</rss>

现在,如果我想添加一个自定义元素,然后添加自定义属性到这个元素怎么办?

我可以像这样创建一个新的SyndicationItem:

var customElement = new SyndicationItem();

然后像这样添加属性:

customElement.AttributeExtensions.Add(new XmlQualifiedName("myAttribute", ""), "someValue");
customElement.AttributeExtensions.Add(new XmlQualifiedName("anotherAttribute"), "someOtherValue");

然后将其添加到我的testtem中,使其在rss提要中的项目列表中:

testItem.ElementExtensions.Add(customElement);

编译器吃掉了它,但是我得到了一个运行时错误,我认为这是因为新元素没有名称。

除了

,我找不到其他的方法来做这件事。

创建提要的XmlDoc,然后开始向其添加元素和属性。

有必要这样做,这似乎很奇怪,我觉得我一定是疏忽了什么。

任何想法?

带有自定义属性的自定义RSS元素

找到解决办法了

我可以像这样添加一个条目到提要:

var contentItem = new SyndicationItem("title", "description", new Uri("http://myuri.com"));

然后添加自定义元素,像这样:

contentItem.ElementExtensions.Add("customElement", String.Empty, "text inside my custom element");

如果我想添加一个自定义元素并添加自定义属性;我可以:

contentItem.ElementExtensions.Add(new XElement("customImageElement", new XAttribute("type", "image/jpg"), new XAttribute("url", "www.myuri.com/pic1234.jpg")).CreateReader());

这将输出:

<customImageElement type="image/jpg" url="www.myprovider.com/pic1234.jpg"></customImageElement>

完成后,我将contentItem添加到List<SyndicationItem>,并在创建提要(项)时添加此列表。

我还可以在<channel>元素下为feed本身添加自定义元素:

首先添加带有条目列表的提要:

var feed = new SyndicationFeed("title text", "description text", new Uri("http://myuri.com"), items);

然后向提要添加自定义元素。元素下:

feed.ElementExtensions.Add(new XElement("image",
            new XElement("url", null, "http://www.myuri.com/logo.jpg"),
            new XElement("title", null, "MyImage"),
            new XElement("link", null, "http://myuri.com/contentid=1234"),
            new XElement("width", null, "100"),
            new XElement("height", null, "100"),
            new XElement("description", null, "This is my image")).CreateReader());

这将输出:

<rss version="2.0">
<channel>
    <title>title text</title>
    <link>http://myuri.com</link>
    <description>description text</description>
    <image>
      <url>http://www.myprovider.com/logo.jpg</url>
      <title>MyImage</title>
      <link>http://myprovider.com/contentid=1234</link>
      <width>100</width>
      <height>100</height>
      <description>This is my image</description>
    </image>
    <item>
      Items added to the items collection
      ...
      ...
      ...
    </item>
  </channel>
</rss>

这就是我能想到的。如果有更好的方法,请分享。