<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: Safely Process SPSite.AllWebs</title>
	<atom:link href="http://solutionizing.net/2008/12/07/safely-process-spsite-allwebs/feed/" rel="self" type="application/rss+xml" />
	<link>http://solutionizing.net/2008/12/07/safely-process-spsite-allwebs/</link>
	<description>Random thoughts on custom development in SharePoint.</description>
	<lastBuildDate>Fri, 06 Jan 2012 00:13:52 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: LINQ for SPWebCollection Revisited: AsSafeEnumerable &#171; Solutionizing .NET</title>
		<link>http://solutionizing.net/2008/12/07/safely-process-spsite-allwebs/#comment-126</link>
		<dc:creator><![CDATA[LINQ for SPWebCollection Revisited: AsSafeEnumerable &#171; Solutionizing .NET]]></dc:creator>
		<pubDate>Tue, 06 Jan 2009 01:02:32 +0000</pubDate>
		<guid isPermaLink="false">http://solutionizing.net/?p=219#comment-126</guid>
		<description><![CDATA[[...] for SPWebCollection Revisited:&#160;AsSafeEnumerable January 5, 2009 &#8212; Keith Dahlby   I have previously discussed implementations of some core LINQ extension methods for SPWebCollection, a process [...]]]></description>
		<content:encoded><![CDATA[<p>[...] for SPWebCollection Revisited:&nbsp;AsSafeEnumerable January 5, 2009 &#8212; Keith Dahlby   I have previously discussed implementations of some core LINQ extension methods for SPWebCollection, a process [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Implementing LINQ Select for SPWebCollection &#171; Solutionizing .NET</title>
		<link>http://solutionizing.net/2008/12/07/safely-process-spsite-allwebs/#comment-103</link>
		<dc:creator><![CDATA[Implementing LINQ Select for SPWebCollection &#171; Solutionizing .NET]]></dc:creator>
		<pubDate>Thu, 11 Dec 2008 06:26:44 +0000</pubDate>
		<guid isPermaLink="false">http://solutionizing.net/?p=219#comment-103</guid>
		<description><![CDATA[[...] to suggest that others use yield return, I suppose I should take my own advice. In particular, my original implementation of SPWebCollection.Select can be improved using the same techniques I used for [...]]]></description>
		<content:encoded><![CDATA[<p>[...] to suggest that others use yield return, I suppose I should take my own advice. In particular, my original implementation of SPWebCollection.Select can be improved using the same techniques I used for [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Implementing LINQ Where for SharePoint &#171; Solutionizing .NET</title>
		<link>http://solutionizing.net/2008/12/07/safely-process-spsite-allwebs/#comment-98</link>
		<dc:creator><![CDATA[Implementing LINQ Where for SharePoint &#171; Solutionizing .NET]]></dc:creator>
		<pubDate>Wed, 10 Dec 2008 01:36:29 +0000</pubDate>
		<guid isPermaLink="false">http://solutionizing.net/?p=219#comment-98</guid>
		<description><![CDATA[[...] my previous post, I suggested a Dispose-safe implementation of SPWebCollection.ForEach(), which Waldek leveraged for [...]]]></description>
		<content:encoded><![CDATA[<p>[...] my previous post, I suggested a Dispose-safe implementation of SPWebCollection.ForEach(), which Waldek leveraged for [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Is it a good idea to use lambda expressions for querying SharePoint data? - Waldek Mastykarz</title>
		<link>http://solutionizing.net/2008/12/07/safely-process-spsite-allwebs/#comment-97</link>
		<dc:creator><![CDATA[Is it a good idea to use lambda expressions for querying SharePoint data? - Waldek Mastykarz]]></dc:creator>
		<pubDate>Tue, 09 Dec 2008 18:32:10 +0000</pubDate>
		<guid isPermaLink="false">http://solutionizing.net/?p=219#comment-97</guid>
		<description><![CDATA[[...] .NET 3x ships with a number of new features among which lambda expressions: an easy way to write code for querying collections. Because of its ease of use many developers use it for retrieving data from different kind of collections. Just recently I’ve been asked to have a look how well lambda expressions perform while retrieving data from Shar.... [...]]]></description>
		<content:encoded><![CDATA[<p>[...] .NET 3x ships with a number of new features among which lambda expressions: an easy way to write code for querying collections. Because of its ease of use many developers use it for retrieving data from different kind of collections. Just recently I’ve been asked to have a look how well lambda expressions perform while retrieving data from Shar&#8230;. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: waldekmastykarz</title>
		<link>http://solutionizing.net/2008/12/07/safely-process-spsite-allwebs/#comment-88</link>
		<dc:creator><![CDATA[waldekmastykarz]]></dc:creator>
		<pubDate>Sun, 07 Dec 2008 11:45:12 +0000</pubDate>
		<guid isPermaLink="false">http://solutionizing.net/?p=219#comment-88</guid>
		<description><![CDATA[Great idea! I really like the simplicity of the code to process SPWebCollection. Just like you have noticed, you should always research whether there is a better way for retrieving  information than walking through the SPWebCollection. For example getting the title and URL might be done using one of the SiteMapProviders as well. But if you want to get some properties your approach by quickly the way to get it done.

Bookmarked!]]></description>
		<content:encoded><![CDATA[<p>Great idea! I really like the simplicity of the code to process SPWebCollection. Just like you have noticed, you should always research whether there is a better way for retrieving  information than walking through the SPWebCollection. For example getting the title and URL might be done using one of the SiteMapProviders as well. But if you want to get some properties your approach by quickly the way to get it done.</p>
<p>Bookmarked!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

