CategoryCollection class
Represents a collection of Category objects.
Namespace: Microsoft.Office.Server.Search.Administration
Assembly: Microsoft.Office.Server.Search (in Microsoft.Office.Server.Search.dll)
Use the AllCategories property of the Schema class to get the collection of managed properties in the Shared Services Provider's search schema.
Use an indexer to return a single category from the CategoryCollection object. For example, assuming the collection is assigned to a variable named categories, use categories[index] in Microsoft Visual C# or categories(index) in Microsoft Visual Basic, where index is a string containing the name of the category or a GUID that identifies the property set for a category.
Use the Create() method of the CategoryCollection class to create a new category in the search schema.
Use the Delete method of the Category class to delete a category in the search schema.
The following code example writes out the full list of categories to the console window.
Prerequisites
Ensure a Shared Services Provider is already created.
Project References
Add the following project references in your console application code project before running this example:
Microsoft.SharePoint
Microsoft.Office.Server
Microsoft.Office.Server.Search