<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>SharePoint of the Day &#187; Object model</title>
	<atom:link href="http://www.understandingsharepoint.com/spotd/tag/object-model/feed" rel="self" type="application/rss+xml" />
	<link>http://www.understandingsharepoint.com/spotd</link>
	<description>Your daily dose of SharePoint - From Spot D</description>
	<lastBuildDate>Fri, 26 Jun 2009 02:21:00 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>SharePoint of the Day #60</title>
		<link>http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-60</link>
		<comments>http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-60#comments</comments>
		<pubDate>Tue, 23 Jun 2009 03:26:11 +0000</pubDate>
		<dc:creator>spotd</dc:creator>
				<category><![CDATA[Developer]]></category>
		<category><![CDATA[Object model]]></category>

		<guid isPermaLink="false">http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-60</guid>
		<description><![CDATA[A lot of SharePoint object has a property bag, in which you can store custom properties in the form of a hashtable. 
For example, you can store custom site settings for custom applications in the SPWeb.Properties bag. 
  Delicious  Digg This Post

You are free to use this tip if you give proper credit [...]]]></description>
			<content:encoded><![CDATA[<p>A lot of SharePoint object has a property bag, in which you can store custom properties in the form of a hashtable. </p>
<p>For example, you can store custom site settings for custom applications in the SPWeb.Properties bag. </p>
<p align="left"><a class="tt" href="http://twitter.com/home/?status=spotd+SharePoint+of+the+Day+%2360+http://is.gd/46dRl" title="Post to Twitter"><img class="nothumb" src="http://www.understandingsharepoint.com/spotd/wp-content/plugins/tweet-this/icons/tt-twitter-big1.png" alt="Post to Twitter" /></a> <a class="tt" href="http://delicious.com/post?url=http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-60&amp;title=SharePoint+of+the+Day+%2360" title="Post to Delicious"><img class="nothumb" src="http://www.understandingsharepoint.com/spotd/wp-content/plugins/tweet-this/icons/tt-delicious-big4.png" alt="Post to Delicious" /></a> <a class="tt" href="http://delicious.com/post?url=http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-60&amp;title=SharePoint+of+the+Day+%2360" title="Post to Delicious">Delicious</a> <a class="tt" href="http://digg.com/submit?url=http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-60&amp;title=SharePoint+of+the+Day+%2360" title="Post to Digg"><img class="nothumb" src="http://www.understandingsharepoint.com/spotd/wp-content/plugins/tweet-this/icons/tt-digg-big4.png" alt="Post to Digg" /></a> <a class="tt" href="http://digg.com/submit?url=http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-60&amp;title=SharePoint+of+the+Day+%2360" title="Post to Digg">Digg This Post</a></p><hr />
<p style="font-weight: bolder;">
You are free to use this tip if you give proper credit to me by linking back to the site at http://www.understandingsharepoint.com/spotd. If you don't, I will bark all night outside your window and chase your cat up in a tree.
</p>
<p><small>© spotd for <a href="http://www.understandingsharepoint.com/spotd">SharePoint of the Day</a>, 2009. <br/>
<a href="http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-60">Permalink</a> | <a href="http://twitter.com/home/?status=#spotd+SharePoint of the Day #60">Tweet SharePoint of the Day #60</a> | 
<a href="http://del.icio.us/post?url=http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-60&title=SharePoint of the Day #60">Add to del.icio.us</a> | 
<a href="http://digg.com/submit?url=http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-60&title=SharePoint of the Day #60">Digg this</a>
<br/>
Post tags: <a href="http://www.understandingsharepoint.com/spotd/tag/object-model" rel="tag">Object model</a><br/>
</small></p>]]></content:encoded>
			<wfw:commentRss>http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-60/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SharePoint of the Day #26</title>
		<link>http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-26</link>
		<comments>http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-26#comments</comments>
		<pubDate>Wed, 06 May 2009 03:26:11 +0000</pubDate>
		<dc:creator>spotd</dc:creator>
				<category><![CDATA[Developer]]></category>
		<category><![CDATA[Object model]]></category>

		<guid isPermaLink="false">http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-26</guid>
		<description><![CDATA[The deleted items of a site collection or site is stored in the RecycleBin collection in the form of RecycleBinItem items. You can query or manipulate these items, for example using the following code:
SPWeb web = SPContext.Current.Web;
foreach (SPRecycleBinItem item in web.RecycleBin)
{
    item.Restore();
}
  Delicious  Digg This Post

You are free to use [...]]]></description>
			<content:encoded><![CDATA[<p>The deleted items of a site collection or site is stored in the RecycleBin collection in the form of RecycleBinItem items. You can query or manipulate these items, for example using the following code:</p>
<p>SPWeb web = SPContext.Current.Web;<br />
foreach (SPRecycleBinItem item in web.RecycleBin)<br />
{<br />
    item.Restore();<br />
}</p>
<p align="left"><a class="tt" href="http://twitter.com/home/?status=spotd+SharePoint+of+the+Day+%2326+http://is.gd/4fyyH" title="Post to Twitter"><img class="nothumb" src="http://www.understandingsharepoint.com/spotd/wp-content/plugins/tweet-this/icons/tt-twitter-big1.png" alt="Post to Twitter" /></a> <a class="tt" href="http://delicious.com/post?url=http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-26&amp;title=SharePoint+of+the+Day+%2326" title="Post to Delicious"><img class="nothumb" src="http://www.understandingsharepoint.com/spotd/wp-content/plugins/tweet-this/icons/tt-delicious-big4.png" alt="Post to Delicious" /></a> <a class="tt" href="http://delicious.com/post?url=http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-26&amp;title=SharePoint+of+the+Day+%2326" title="Post to Delicious">Delicious</a> <a class="tt" href="http://digg.com/submit?url=http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-26&amp;title=SharePoint+of+the+Day+%2326" title="Post to Digg"><img class="nothumb" src="http://www.understandingsharepoint.com/spotd/wp-content/plugins/tweet-this/icons/tt-digg-big4.png" alt="Post to Digg" /></a> <a class="tt" href="http://digg.com/submit?url=http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-26&amp;title=SharePoint+of+the+Day+%2326" title="Post to Digg">Digg This Post</a></p><hr />
<p style="font-weight: bolder;">
You are free to use this tip if you give proper credit to me by linking back to the site at http://www.understandingsharepoint.com/spotd. If you don't, I will bark all night outside your window and chase your cat up in a tree.
</p>
<p><small>© spotd for <a href="http://www.understandingsharepoint.com/spotd">SharePoint of the Day</a>, 2009. <br/>
<a href="http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-26">Permalink</a> | <a href="http://twitter.com/home/?status=#spotd+SharePoint of the Day #26">Tweet SharePoint of the Day #26</a> | 
<a href="http://del.icio.us/post?url=http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-26&title=SharePoint of the Day #26">Add to del.icio.us</a> | 
<a href="http://digg.com/submit?url=http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-26&title=SharePoint of the Day #26">Digg this</a>
<br/>
Post tags: <a href="http://www.understandingsharepoint.com/spotd/tag/object-model" rel="tag">Object model</a><br/>
</small></p>]]></content:encoded>
			<wfw:commentRss>http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-26/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SharePoint of the Day #1</title>
		<link>http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-1</link>
		<comments>http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-1#comments</comments>
		<pubDate>Tue, 31 Mar 2009 23:01:49 +0000</pubDate>
		<dc:creator>spotd</dc:creator>
				<category><![CDATA[Developer]]></category>
		<category><![CDATA[Object model]]></category>

		<guid isPermaLink="false">http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-1</guid>
		<description><![CDATA[Always remember to call .Update() when you have made changes to an object through the SharePoint object model. A tip is that if there is an Update() method on the object you should call that method whenever you have made changes to the object.
Remembering that simple tip will help you. Now, if I could only [...]]]></description>
			<content:encoded><![CDATA[<p>Always remember to call .Update() when you have made changes to an object through the SharePoint object model. A tip is that if there is an Update() method on the object you should call that method whenever you have made changes to the object.</p>
<p>Remembering that simple tip will help you. Now, if I could only remember where I burried those bones last summer, I&#8217;ll be a happy puppy.</p>
<p align="left"><a class="tt" href="http://twitter.com/home/?status=spotd+SharePoint+of+the+Day+%231+http://is.gd/4c1MV" title="Post to Twitter"><img class="nothumb" src="http://www.understandingsharepoint.com/spotd/wp-content/plugins/tweet-this/icons/tt-twitter-big1.png" alt="Post to Twitter" /></a> <a class="tt" href="http://delicious.com/post?url=http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-1&amp;title=SharePoint+of+the+Day+%231" title="Post to Delicious"><img class="nothumb" src="http://www.understandingsharepoint.com/spotd/wp-content/plugins/tweet-this/icons/tt-delicious-big4.png" alt="Post to Delicious" /></a> <a class="tt" href="http://delicious.com/post?url=http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-1&amp;title=SharePoint+of+the+Day+%231" title="Post to Delicious">Delicious</a> <a class="tt" href="http://digg.com/submit?url=http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-1&amp;title=SharePoint+of+the+Day+%231" title="Post to Digg"><img class="nothumb" src="http://www.understandingsharepoint.com/spotd/wp-content/plugins/tweet-this/icons/tt-digg-big4.png" alt="Post to Digg" /></a> <a class="tt" href="http://digg.com/submit?url=http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-1&amp;title=SharePoint+of+the+Day+%231" title="Post to Digg">Digg This Post</a></p><hr />
<p style="font-weight: bolder;">
You are free to use this tip if you give proper credit to me by linking back to the site at http://www.understandingsharepoint.com/spotd. If you don't, I will bark all night outside your window and chase your cat up in a tree.
</p>
<p><small>© spotd for <a href="http://www.understandingsharepoint.com/spotd">SharePoint of the Day</a>, 2009. <br/>
<a href="http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-1">Permalink</a> | <a href="http://twitter.com/home/?status=#spotd+SharePoint of the Day #1">Tweet SharePoint of the Day #1</a> | 
<a href="http://del.icio.us/post?url=http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-1&title=SharePoint of the Day #1">Add to del.icio.us</a> | 
<a href="http://digg.com/submit?url=http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-1&title=SharePoint of the Day #1">Digg this</a>
<br/>
Post tags: <a href="http://www.understandingsharepoint.com/spotd/tag/object-model" rel="tag">Object model</a><br/>
</small></p>]]></content:encoded>
			<wfw:commentRss>http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-1/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

