简体   繁体   中英

display images in rss feeds using SyndicationItem class

i create rss feed using System.ServiceModel.Syndication

public ActionResult RSS()
        {
            List<C_Node> rssNodes = GetNodeList(takeNum: 20).ToList();
            var syndItems = new List<SyndicationItem>();
            foreach (var item in rssNodes)
            {
                var syndItem = new SyndicationItem()
                {
                    Id = item.NodeId.ToString(),
                    Title = SyndicationContent.CreatePlaintextContent(String.Format("{0}", item.Title)),
                    Summary = SyndicationContent.CreateHtmlContent(HelperMethods.Truncate(item.Details,400)),
                    Content = SyndicationContent.CreateHtmlContent(item.Details),
                    PublishDate = item.PostDate
                };
                //syndItem.ElementExtensions.Add("content:encoded", "", SyndicationContent.CreateHtmlContent(item.Details));
                syndItem.Links.Add(SyndicationLink.CreateAlternateLink(new Uri(ConfigurationManager.AppSettings["SiteUrl"] + Url.Action("Details", "Node", new { id = item.NodeId }))));//Nothing alternate about it. It is the MAIN link for the item.
                syndItems.Add(syndItem);
            }

            return new RssFeed(title: Resources.Site.Title,
                               items: syndItems,
                               contentType: "application/rss+xml",
                               description: Resources.Site.Slogan);
        }

my question is how to display images with each syndication item ?

添加此代码完成:

syndItem.ElementExtensions.Add(new XElement("image", item.ImageUrl));

此代码也有效

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM