1

我正在为 Outlook 2007 SP2 客户端使用System.ServiceModel.Syndication.SyndicationFeed生成 RSS 2.0 提要,我想知道是否可以设置提要的更新限制以便 Outlook 客户端识别。

4

1 回答 1

3

您需要使用联合扩展模块:

feed.AttributeExtensions.Add(new XmlQualifiedName("sy", "http://www.w3.org/2000/xmlns/"), "http://purl.org/rss/1.0/modules/syndication/");
feed.ElementExtensions.Add("updatePeriod", "http://purl.org/rss/1.0/modules/syndication/", "daily");
feed.ElementExtensions.Add("updateFrequency", "http://purl.org/rss/1.0/modules/syndication/", 6);
feed.ElementExtensions.Add("updateBase", "http://purl.org/rss/1.0/modules/syndication/", DateTime.UtcNow);
于 2009-07-27T14:09:35.957 回答