SPBuiltInContentTypeId class
SharePoint 2013
A class that retrieves SPContentTypeId objects that represent identifiers (IDs) for built-in content types.
Namespace:
Microsoft.SharePoint
Assembly: Microsoft.SharePoint (in Microsoft.SharePoint.dll)
The following example is a console application that examines where the built-in “Item” content type is used in a site collection. The application begins by building a generic list of SPContentTypeUsage objects that contain information about each use of a content type in a site collection. Then it counts the number of times that the content type is used as a site content type and the number of times it is used as a list content type. The results are printed to the console.
using System; using System.Collections.Generic; using Microsoft.SharePoint; namespace Test { class ConsoleApp { static void Main(string[] args) { using (SPSite siteCollection = new SPSite("http://localhost")) { using (SPWeb rootWeb = siteCollection.RootWeb) { // Get the content type. SPContentType contentType = rootWeb.AvailableContentTypes[SPBuiltInContentTypeId.Item]; //Get the usage collection. IList<SPContentTypeUsage> usages = SPContentTypeUsage.GetUsages(contentType); // Count the site and list types. int listTypes = 0; int siteTypes = 0; foreach (SPContentTypeUsage usage in usages) { if (usage.IsUrlToList) listTypes++; else siteTypes++; } Console.Write("The content type is inherited by {0} site content types", siteTypes); Console.WriteLine(" and {0} list content types.", listTypes); } } Console.Write("\nPress ENTER to continue..."); Console.ReadLine(); } } }
When the application is run against a Web site created with the Team Site template, it prints the following output to the console.
The content type is inherited by 33 site content types and 20 list content types. Press ENTER to continue...