Luk
Luk

Reputation: 5511

RSS/Atom parsing library for .Net

I'm trying to find a library that can read a given RSS/Atom feed, and that can guess its format and abstract it as a list of items.

The idea is to build a simple RSS reader that could take any feed.

I know PHP has a few libraries doing just that, but I can't find any .Net version.

Upvotes: 3

Views: 1808

Answers (3)

Pat
Pat

Reputation: 5282

If you are using 3.5 you can use classes from the System.ServiceModel.Syndication namespace

Upvotes: 3

Anton Gogolev
Anton Gogolev

Reputation: 115779

Argotic is a pretty comprehensive content syndication framework.

Upvotes: 1

bdukes
bdukes

Reputation: 155955

I believe the ASP.NET RSS Toolkit does what you want.

Upvotes: 2

Related Questions