tags:

views:

29

answers:

3

I have rss that has a number of other custom fields. do any of the c# libraries (RSS.NEt, etc) support reading these fields? i can't seem to find any reference to this.

what is the easier way to parse XML from an RSS feed and include customer fields

+1  A: 

RSS feeds have a well defined structure. You can use XPath to get the fields you need.
Here's a sample introduction and here's the MSDN documentation.

SiN
A: 

One option is to just do the deserialization yourself. Throw together a few classes with attributes from System.XML.Serialization and you're set. Then you don't have to mess around with existing libraries or XPath.

Reinderien
A: 

I wound up changing the RSS.net source code to take in all custom fields as a big Dictionary a few lines changes and now i am all set.

ooo