<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: ASP.NET MVC RSS Feed Action Result</title>
	<atom:link href="http://www.developerzen.com/2009/01/11/aspnet-mvc-rss-feed-action-result/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.developerzen.com/2009/01/11/aspnet-mvc-rss-feed-action-result/</link>
	<description>The essence of software development...</description>
	<lastBuildDate>Thu, 22 Jul 2010 21:40:41 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: niaher</title>
		<link>http://www.developerzen.com/2009/01/11/aspnet-mvc-rss-feed-action-result/comment-page-1/#comment-2262</link>
		<dc:creator>niaher</dc:creator>
		<pubDate>Sun, 16 May 2010 14:05:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.developerzen.com/?p=2187#comment-2262</guid>
		<description>Awesome post, just what I was looking for. Thanks.</description>
		<content:encoded><![CDATA[<p>Awesome post, just what I was looking for. Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Asad Ali Butt</title>
		<link>http://www.developerzen.com/2009/01/11/aspnet-mvc-rss-feed-action-result/comment-page-1/#comment-2251</link>
		<dc:creator>Asad Ali Butt</dc:creator>
		<pubDate>Sun, 14 Mar 2010 19:07:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.developerzen.com/?p=2187#comment-2251</guid>
		<description>Good thing is we may use even Argotic Framework at the back end and it works great as well</description>
		<content:encoded><![CDATA[<p>Good thing is we may use even Argotic Framework at the back end and it works great as well</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris Shipman</title>
		<link>http://www.developerzen.com/2009/01/11/aspnet-mvc-rss-feed-action-result/comment-page-1/#comment-2246</link>
		<dc:creator>Chris Shipman</dc:creator>
		<pubDate>Thu, 25 Feb 2010 20:28:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.developerzen.com/?p=2187#comment-2246</guid>
		<description>Thanks for the post!  It came in very handy.

I&#039;d previously used the SyndicationFeed class in a WebForms app, but this was the first time I used it in an MVC app, and this article was completely clear and to the point.</description>
		<content:encoded><![CDATA[<p>Thanks for the post!  It came in very handy.</p>
<p>I&#8217;d previously used the SyndicationFeed class in a WebForms app, but this was the first time I used it in an MVC app, and this article was completely clear and to the point.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dean Poulin</title>
		<link>http://www.developerzen.com/2009/01/11/aspnet-mvc-rss-feed-action-result/comment-page-1/#comment-2197</link>
		<dc:creator>Dean Poulin</dc:creator>
		<pubDate>Tue, 15 Dec 2009 20:03:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.developerzen.com/?p=2187#comment-2197</guid>
		<description>Great solution! 

I was looking for the best way to do this, first stumbled upon the MVCContrib&#039;s XmlResult and you took the next logical step, Exactly what I was looking for.

Thanks a million!</description>
		<content:encoded><![CDATA[<p>Great solution! </p>
<p>I was looking for the best way to do this, first stumbled upon the MVCContrib&#8217;s XmlResult and you took the next logical step, Exactly what I was looking for.</p>
<p>Thanks a million!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Thomas Cortes</title>
		<link>http://www.developerzen.com/2009/01/11/aspnet-mvc-rss-feed-action-result/comment-page-1/#comment-2187</link>
		<dc:creator>Thomas Cortes</dc:creator>
		<pubDate>Thu, 10 Dec 2009 22:43:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.developerzen.com/?p=2187#comment-2187</guid>
		<description>That&#039;s a very good post,
I had a XmlWriterSettings for the XmlWriter to specify encoding :

XmlWriterSettings settings = new XmlWriterSettings();
settings.Encoding = new UTF8Encoding(false);

It Could be helpful ;)

Thank you.</description>
		<content:encoded><![CDATA[<p>That&#8217;s a very good post,<br />
I had a XmlWriterSettings for the XmlWriter to specify encoding :</p>
<p>XmlWriterSettings settings = new XmlWriterSettings();<br />
settings.Encoding = new UTF8Encoding(false);</p>
<p>It Could be helpful <img src='http://www.developerzen.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>Thank you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sitemap Action Result for ASP.NET MVC &#124; Keyvan Nayyeri</title>
		<link>http://www.developerzen.com/2009/01/11/aspnet-mvc-rss-feed-action-result/comment-page-1/#comment-2121</link>
		<dc:creator>Sitemap Action Result for ASP.NET MVC &#124; Keyvan Nayyeri</dc:creator>
		<pubDate>Tue, 06 Oct 2009 19:17:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.developerzen.com/?p=2187#comment-2121</guid>
		<description>[...] Action result is a very nice and helpful part of ASP.NET MVC that can act as a extensibility point as well. There are various derivations of ActionResult base class available in ASP.NET MVC, and there are some interesting extensions such as the one written for  RSS feed generation. [...]</description>
		<content:encoded><![CDATA[<p>[...] Action result is a very nice and helpful part of ASP.NET MVC that can act as a extensibility point as well. There are various derivations of ActionResult base class available in ASP.NET MVC, and there are some interesting extensions such as the one written for  RSS feed generation. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Graeme Finn</title>
		<link>http://www.developerzen.com/2009/01/11/aspnet-mvc-rss-feed-action-result/comment-page-1/#comment-2061</link>
		<dc:creator>Graeme Finn</dc:creator>
		<pubDate>Tue, 07 Jul 2009 05:52:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.developerzen.com/?p=2187#comment-2061</guid>
		<description>Very neat solution.  Came in very handy for my site.

Thanks.</description>
		<content:encoded><![CDATA[<p>Very neat solution.  Came in very handy for my site.</p>
<p>Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrei Rinea</title>
		<link>http://www.developerzen.com/2009/01/11/aspnet-mvc-rss-feed-action-result/comment-page-1/#comment-1685</link>
		<dc:creator>Andrei Rinea</dc:creator>
		<pubDate>Wed, 28 Jan 2009 23:47:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.developerzen.com/?p=2187#comment-1685</guid>
		<description>Incredibly elegant!!

So I just have to have .NET Framework 3.5, reference the System.ServiceModel.Web and I&#039;m quite done?

Wow...</description>
		<content:encoded><![CDATA[<p>Incredibly elegant!!</p>
<p>So I just have to have .NET Framework 3.5, reference the System.ServiceModel.Web and I&#8217;m quite done?</p>
<p>Wow&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Shared Tutorials &#187; Blog Archive &#187; ASP.NET MVC RSS Feed Action Result &#124; DeveloperZen</title>
		<link>http://www.developerzen.com/2009/01/11/aspnet-mvc-rss-feed-action-result/comment-page-1/#comment-1614</link>
		<dc:creator>Shared Tutorials &#187; Blog Archive &#187; ASP.NET MVC RSS Feed Action Result &#124; DeveloperZen</dc:creator>
		<pubDate>Fri, 16 Jan 2009 04:55:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.developerzen.com/?p=2187#comment-1614</guid>
		<description>[...] wrote a post about rendering an RSS feed on ASP.NET MVC using custom feed model classes and a view that renders the feed XML. There’sa better [...]</description>
		<content:encoded><![CDATA[<p>[...] wrote a post about rendering an RSS feed on ASP.NET MVC using custom feed model classes and a view that renders the feed XML. There’sa better [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
