I would like the user to specify the address of the RSS feed and serialize the information from it. I'm not interested in the XML format, but it populates a strongly typed object from XML. My question is, is there a standard that supports all RSS feeds (do they all have a date, name, etc.)? If yes, then there is an XSD that describes this. If not, how do I handle serialization of an RSS feed for an object in ASP.NET?
EDIT: SyndicationFeed elements have the following properties:
- Title.Text → Gives us the title
- Summary.Text → Gives a summary
Q1 - Summary includes html tags. Is there any way to remove them? I'm only interested in the text of Q2. Do all RSS feeds have full content in the Summary element? I see that some RSS feeds have only a few lines for resumes, while others have all the content of the message. Thanks
source
share