Reputation: 11136
I'm ASP.NET programmer with no WinForms knowledge.
I need to create a service that will access few online rss feeds, save them in jSon format and then pass them to page on user request. Application that will consume rss feeds in jSon format is MVC application. So translation services can be integrated inside of MVC application.
What would you advice to start with ?
Upvotes: 1
Views: 70
Reputation: 46008
Use SyndicationFeed class from System.ServiceModel.Syndication
namespace.
This namespace contains all the classes you need to create or consume RSS / Atom feeds.
Upvotes: 1