ASPNET MVC:如何将图像添加到RSS项目?

时间:2011-11-29 22:43:03

标签: asp.net-mvc rss syndication-feed

我需要在我的RSS Feed中添加图片,但看不到它。

我的代码是:

     var item = new SyndicationItem
     (
          title: Title,
          content: Content,
          itemAlternateLink: new Uri(bla)
     );

     item.ElementExtensions.Add(
         new XElement("enclosure",
            new XAttribute("type", "image/jpeg"),
            new XAttribute("url", new Uri(Uri))
         ).CreateReader()
     );

如果我使用ElementExtensions,我会看到RSS中图像的链接,但我想直接看到图像而不点击链接。 可能吗?

1 个答案:

答案 0 :(得分:1)

您是否在询问如何在RSS Feed中显示图片?如果是这样,我相信要在Feed中显示图片,您需要RSS媒体扩展程序 - http://video.search.yahoo.com/mrss

例如,Zenfolio使用它来渲染图库供稿中的照片。