Tagged Questions

5
votes
6answers
1k views

Deserializing an RSS feed in .NET

Is it practical / possible to use serialization to read data from an RSS feed? I basically want to pull information from my Netflix queue (provided from an RSS feed), and I'm trying to decide if ...
2
votes
1answer
714 views

.NET/C#: Using RSS.NET with Stack Overflow Feeds: How To Handle Special Properties of RSS Items?

I'm writing a Stack Overflow API wrapper, currently at http://soapidotnet.googlecode.com/. I have a few questions about parsing SO RSS feeds. I've chosen to use RSS.NET to parse the RSS, but I have a ...
1
vote
1answer
102 views

Serializing a container of RSS feeds?

I am working on a project for an RSS Client. Right now I'm retrieving a feed using SyndicationFeed and an XmlReader and adding it to a list: SyndicationFeed feed = SyndicationFeed.Load( ...
1
vote
2answers
179 views

Problem with rss reading

I have a problem with reading an rss feed in my site. When i add an feed to my site I cache it in the database by serializing it and when I do a refresh I unserialize it again from the database if ...