I'm looking for a C# "one-liner" (need not strictly be a single line, but very short is preferable) way to download an RSS feed from a given HTTP URL, and extract specific data. Robustness be damned. Something that doesn't require any external libraries.

Specifically I want to count the number of <item>s in the RSS. But some kind of LINQ method that could be reused to, say for example, return a list of the item <title> elements would be most useful, if it can be kept short.

link|improve this question

76% accept rate
Strongly disagree with closure. This is clearly a programming question. – Andrew Russell May 1 at 12:02
feedback

closed as off topic by casperOne May 1 at 11:55

Questions on Stack Overflow are expected to generally relate to programming or software development in some way, within the scope defined in the faq.

3 Answers

up vote 3 down vote accepted
SyndicationFeed.Load(XmlReader.Create("http://weblogs.asp.net/scottgu/rss.aspx")).Items.Count();
link|improve this answer
+1 for using SyndicationFeed – Giorgi Aug 24 '11 at 18:12
feedback
Regex.Matches(new WebClient().DownloadString("http://stackoverflow.com/feeds/question/7180063"), "<entry>").Count
link|improve this answer
+1 for staying true to "one-liner" – Nate Aug 24 '11 at 18:03
@Nate Your answer lends itself to a cleaner one-liner too – Jimmy Aug 24 '11 at 18:05
feedback

What about something like this:

var rssFeed = XDocument.Load("http://weblogs.asp.net/scottgu/rss.aspx");

var posts = from item in rssFeed.Descendants("item")
            select new
            {
                Title     = (string)item.Element("title"),
                Published = (DateTime?)item.Element("pubDate"),
                Url       = (string)item.Element("link"),
            };

Source.

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.