Skip to content

consuming an rss feed

Howard van Rooijen edited this page Feb 19, 2023 · 3 revisions

How to consume Really Simple Syndication (RSS) syndication feeds

Really Simple Syndication (RSS) is an XML-based document format for the syndication of web content so that it can be republished on other sites or downloaded periodically and presented to users. The framework provides a complete implementation of the Really Simple Syndication (RSS) 2.0 specification, which can be found at http://www.rssboard.org/rss-specification. The framework's implementation of this specification also conforms to the RSS Best Practices Profile guidelines as closely as possible.

The classes and enumerations that together compose the implementation of RSS are located in the Argotic.Syndication namespace. The primary framework entity that you will use when working with RSS formatted syndication resources is the RssFeed class. This class implements the ISyndicationResource and IExtensibleSyndicationObject interfaces, and provides an API that maps closely to the syndication specification entities as well as methods for consuming and persisting syndicated content. The framework will by default automatically load any syndication extensions that are present in addition to the syndicated content information and attempt to handle malformed XML data.

Consuming syndicated content

The RssFeed class provides two ways of consuming syndicated content that conforms to the RSS syndication format. The first way to consume an RSS feed is to use the static Create method exposed by the RssFeed class, which provides a means of quickly consuming web content that is available at a given Uri:

using Argotic.Syndication;

RssFeed feed = RssFeed.Create(new Uri("http://www.pwop.com/feed.aspx?show=dotnetrocks&filetype=master"));

The other way to consume an RSS feed is to use the overloaded Load method exposed by the RssFeed class, which provides a means of consuming syndicated content from a variety of data sources such as IXPathNavigable, Stream, XmlReader, and Uri:

using System.IO;
using System.Xml;
using System.Xml.Xpath;
using Argotic.Syndication;
    
RssFeed feed    = new RssFeed();
    
using (FileStream stream = new FileStream("SimpleRssFeed.xml", FileMode.Open, FileAccess.Read))
{
    feed.Load(stream);
}

feed = new RssFeed();
using (FileStream stream = new FileStream("SimpleRssFeed.xml", FileMode.Open, FileAccess.Read))
{
    XmlReaderSettings settings  = new XmlReaderSettings();
    settings.IgnoreComments = true;
    settings.IgnoreWhitespace = true;

    using(XmlReader reader = XmlReader.Create(stream, settings))
    {
        feed.Load(reader);
    }
}

feed = new RssFeed();
using (FileStream stream = new FileStream("SimpleRssFeed.xml", FileMode.Open, FileAccess.Read))
{
    feed.Load(new XPathDocument(stream));
}

Sample file that can be used with the above code example: [file:SimpleRssFeed.xml]

Specifying the set of features to support when loading syndicated content

The framework provides a means of specifying the set of features that are supported when loading an RSS feed via the SyndicationResourceLoadSettings class. This class is passed as an argument to the Create or Load methods of the RssFeed class in order to configure how the load operation is performed.

The SyndicationResourceLoadSettings class exposes the following properties:

  • AutoDetectExtensions - Indicates if syndication extensions supported by the load operation are automatically determined based on the XML namespaces declared on the syndication resource.
  • CharacterEncoding - Indicates the character encoding to use when parsing a syndication resource.
  • RetrievalLimit - Determines the maximum number of resource entities to retrieve from a syndication resource.
  • SupportedExtensions - Indicates the custom syndication extensions that you wish to support.
  • Timeout - Specifies the amount of time after which asynchronous load operations will time out.

Example:

using Argotic.Common;
using Argotic.Syndication;

SyndicationResourceLoadSettings settings = new SyndicationResourceLoadSettings();
settings.RetrievalLimit = 10;

Uri feedUrl = new Uri("http://www.pwop.com/feed.aspx?show=dotnetrocks&filetype=master");
RssFeed feed = RssFeed.Create(feedUrl, settings);

foreach (RssItem item in feed.Channel.Items)
{
    // The items have been limited to the first 10 in the feed channel
}

In the example above, we are using the SyndicationResourceLoadSettings class to limit the number of RSS channel items that are read from the underlying XML data and added to the feed's Items collection. This can be useful when you are only interested in the a subset of the total available items, are working with a very large feed, or want to reduce the time it takes to load a feed. By default the RssFeed class loads all channel items that are present in the feed.

Clone this wiki locally