tags:

views:

31

answers:

1

I've been looking at some different options for reading RSS Feeds in .Net. I've seen frameworks like Argotic, etc. My question is, do any of these frameworks assist in determining which items in a feed are new? Or is that outside their scope?

+1  A: 

I usually use the rss.net open source project found here (http://www.rssdotnet.com/) which gives you enough information to determine if items in the current feed (when compared to your local items) are new or not. Given that RSS is stateless it doesn't know when you last requested the feed and therefore couldn't provide which items in the current feed are new or not compared to the last time you queried the feed. Simply storing the slug for the rss item should be enough for a simple comparison to determine what is new or not. Also you have the publish date and a few other items that generally don't change.

Andrew Siemer
taylonr