Rss20FeedFormatter Ignores TextSyndicationContent type for SyndicationItem.Summary
While using the Rss20FeedFormatter class in a WCF project, I was trying to wrap the content of my description elements with a <![CDATA[ ]]> section. I found that no matter what I did, the HTML content of the description elements was always encoded and the CDATA section was never added. After peering into the source code of Rss20FeedFormatter, I found that when building the Summary node, it basically creates a new TextSyndicationContent instance which wipes out whatever settings were previously specified ( I think ). My Code public class CDataSyndicationContent : TextSyndicationContent { public