<?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>Christian Hemker &#187; Object Model</title>
	<atom:link href="http://blog.hemker.de/tag/object-model/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.hemker.de</link>
	<description>Microsoft / Windows / SharePoint / Exchange / Security</description>
	<lastBuildDate>Thu, 20 Aug 2009 07:19:18 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>List all Web features with Object Model</title>
		<link>http://blog.hemker.de/2009/04/01/list-all-web-features-with-object-model/</link>
		<comments>http://blog.hemker.de/2009/04/01/list-all-web-features-with-object-model/#comments</comments>
		<pubDate>Wed, 01 Apr 2009 11:29:16 +0000</pubDate>
		<dc:creator>Christian</dc:creator>
				<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[Object Model]]></category>

		<guid isPermaLink="false">http://blog.hemker.de/list-all-web-features-with-object-model/</guid>
		<description><![CDATA[Just a little C# sniplet which lists all feature IDs of a SharePoint web:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Microsoft.SharePoint.Administration;
using Microsoft.SharePoint;
namespace SiteCollections
{
    class Program
    {
        static void Main(string[] args)
        {
            SPFarm farm = SPFarm.Local;
            SPWebService service = farm.Services.GetValue&#60;SPWebService&#62;(&#8220;&#8221;);
            foreach (SPWebApplication webapp in service.WebApplications)
            {
                Console.WriteLine(&#8220;Web Application: &#8221; + webapp.Name);
                foreach (SPSite site in webapp.Sites)
                {
                    Console.WriteLine(&#8221; [...]]]></description>
		<wfw:commentRss>http://blog.hemker.de/2009/04/01/list-all-web-features-with-object-model/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
