This page documents the code experiments in the Experiments folder in the root directory.

RSSTest2

This is a simple program that retrieves the RSS feed from http://noadventures.com/feed/ when a button is cricked on the webpage. I wanted to see how hard it would be to manipulate RSS Feeds in .NET using C#.

The page uses the the XmlReader Class, SyndicationFeed Class, and SyndicationItem Class from .NET Framework 4.6.   It uses the XmlReader.Create("<url>") method to create a new object that stores the XML code from the RSS feed. It then creates a new object using the SyndicationFeed.Load(<SyndicationFeed Object>) to parse the XML code from the XmlReader object. The program then uses SyndicationItem to access each item in the the SyndicationFeed.