Felipe Oriani
Felipe Oriani

Reputation: 38598

rss in windows forms

I'm developing an application in windows forms with C#, and I'1d like to know How could I use Rss Toolkit in Windows Forms Application ? I've referenced in my solution but it doesn't work very fine, an error apper when I compile the app.

Is there any easy way to read Rss (Feeds) in Windows Forms ?

If someone can help me.. I appretiate!

Thanks

Upvotes: 2

Views: 2296

Answers (1)

Anton Gogolev
Anton Gogolev

Reputation: 115731

If you're using .NET 3.5 SP1, it already has everything you need in terms of syndication:

XmlReader reader = XmlReader.Create("http://localhost/feeds/serializedFeed.xml");
SyndicationFeed feed = SyndicationFeed.Load(reader);

Upvotes: 4

Related Questions