I have a requirement to consume only the latest two rss feeds (using .NET) to reduce latency in reading RSS. I found plenty of examples to consume RSS. However, I did not find any to limit the feeds being read. And, this is not for a windows forms application.
Share
Open the http connection to the RSS URL and load the stream by hand, reading it entry by entry at a time, and then, when you had enough, terminate connection. You don’t have to go all the way for whole XML.
Of course, some light XML parsing would be needed here.