SyndicateFeed 类不处理 RSS 版本 0.91
.NET 中的 SyndicateFeed 类似乎仅支持 RSS 版本 2.0。 我如何支持 RSS 0.91 版本?
The SyndicationFeed Class in .NET only seems to support RSS version 2.0. How do I go about supporting RSS version 0.91?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
简而言之,您需要创建一个处理 RSS 0.91 标准的序列化和反序列化的类。 这样的类应该派生自 SyndicateFeedFormatter 类。
我创建了这样一个类,并在此处提供了它的源代码和如何使用它的描述:
联合和使用 RSS 1.0 ( RDF) ASP.NET 3.5 中的提要。
快乐编程!
In short, you need to create a class that handles the serialization and deserialization of the RSS 0.91 standard. Such a class should derive from the SyndicationFeedFormatter class.
I've created such a class and provide its source code and a description of how to use it here:
Syndicating and Consuming RSS 1.0 (RDF) Feeds in ASP.NET 3.5.
Happy programming!
我建议使用 CodeHollow.FeedReader 包,它支持多个 RSS 版本(包括 0.91): https://github.com/codehollow/FeedReader
I would suggest using the CodeHollow.FeedReader package which supports multiple RSS versions (including 0.91): https://github.com/codehollow/FeedReader