我需要将图像添加到我的 RSS 提要中,但看不到它。
我的代码是:
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 中看到图像的链接,但我想直接查看图像而不单击链接。可能吗?