2

I use this code to get RSS from stackoverflow.com

SyndicationFeed feed = SyndicationFeed.Load(XmlReader.Create("http://stackoverflow.com/feeds"));
        foreach (SyndicationItem item in feed.Items)
        {
            Console.WriteLine(item.Title.Text);
            Console.WriteLine(item.Title.Type);
            Console.WriteLine(feed.Items.Count());
            Debug.Print(item.Title.Text);

        }

I get just 30 items but when I check in Google Reader I get more than this count.

Is there a limitation here?

numaroth
  • 1,295
  • 4
  • 25
  • 36

2 Answers2

2

30 is what stackoverflow returns, it is not a limitation of the SyndicationFeed class.

Z .
  • 12,657
  • 1
  • 31
  • 56
2

Google Reader stores old articles from RSS feeds. So we are limited to what the RSS feed contains, but Google has an archive that'll let you keep scrolling.

DavGarcia
  • 18,540
  • 14
  • 58
  • 96