CategoryCollection class
Representa uma coleção de objetos Category .
Inheritance hierarchy
System.Object
Microsoft.Office.Server.Search.Administration.CategoryCollection
Namespace: Microsoft.Office.Server.Search.Administration
Assembly: Microsoft.Office.Server.Search (in Microsoft.Office.Server.Search.dll)
Syntax
'Declaração
<SharePointPermissionAttribute(SecurityAction.Demand, ObjectModel := True)> _
Public NotInheritable Class CategoryCollection _
Implements IEnumerable
'Uso
Dim instance As CategoryCollection
[SharePointPermissionAttribute(SecurityAction.Demand, ObjectModel = true)]
public sealed class CategoryCollection : IEnumerable
Comentários
Use a propriedade AllCategories da classe Schema para obter a coleção de propriedades gerenciadas no esquema de pesquisa do provedor de serviços compartilhados.
Use um indexador para retornar uma única categoria do objeto CategoryCollection . Por exemplo, supondo que a coleção é atribuída a uma variável chamada categories, use a categories[index] no Microsoft Visual C# ou categories(index) no Microsoft Visual Basic, onde o índice é uma seqüência de caracteres contendo o nome da categoria ou um GUID que identifica a propriedade definida para uma categoria.
Use o método Create() da classe CategoryCollection para criar uma nova categoria no esquema de pesquisa.
Use o método Delete da classe Category para excluir uma categoria no esquema de pesquisa.
Examples
O exemplo de código a seguir grava a lista completa de categorias da janela do console.
Prerequisites
Certifique-se de que um provedor de serviços compartilhados já foi criado.
Project References
Adicione as seguintes referências de projeto em seu projeto de código de aplicativo de console antes de executar este exemplo:
Microsoft.SharePoint
Microsoft.Office.Server
Microsoft.Office.Server.Search
using System;
using System;
using System.Collections.Generic;
using System.Text;
using Microsoft.Office.Server.Search.Administration;
using Microsoft.SharePoint;
namespace CategoriesSample
{
class Program
{
static void Main(string[] args)
{
try
{
// Replace SiteName with the name of a site using the Shared Services Provider.
string strURL = "http://<SiteName>";
Schema sspSchema = new Schema(SearchContext.GetContext(new SPSite(strURL)));
CategoryCollection categories = sspSchema.AllCategories;
foreach (Category category in categories)
{
Console.WriteLine(category.Name);
}
}
catch(Exception ex)
{
Console.WriteLine(ex.ToString());
}
}
}
}
Imports System
Imports System.Collections.Generic
Imports System.Text
Imports Microsoft.Office.Server.Search.Administration
Imports Microsoft.SharePoint
Namespace CategoriesSample
Module Program
Sub Main(ByVal args() As String)
Try
' Replace SiteName with the name of a site using the Shared Services Provider.
Dim strURL As String = "http://<SiteName>"
Dim sspSchema As New Schema(SearchContext.GetContext(New SPSite(strURL)))
Dim categories As CategoryCollection = sspSchema.AllCategories
For Each category As Category In categories
Console.WriteLine(category.Name)
Next category
Catch ex As Exception
Console.WriteLine(ex.ToString())
End Try
End Sub
End Module
End Namespace
Thread safety
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.