: Content (Clase) (Microsoft.Office.Server.Search.Administration)
Represents the top-level object for administration of the content sources for a Shared Services Provider's (SSP) search service.
Espacio de nombres:
Ensamblado: Microsoft.Office.Server.Search (in microsoft.office.server.search.dll)
Sintaxis
'Declaración
<SharePointPermissionAttribute(SecurityAction.LinkDemand, ObjectModel:=True)> _
Public NotInheritable Class Content
'Uso
Dim instance As Content
[SharePointPermissionAttribute(SecurityAction.LinkDemand, ObjectModel=true)]
public sealed class Content
Comentarios
Use the constructor of the Content class to create a Content object that allows you to access and administer the content sources for an SSP.
For more information about content sources and the new Enterprise Search Administration object model, see Introducción a los orígenes de contenido, Administración de contenido, and Getting Started with the Search Administration Object Model.
Ejemplo
The following code example writes out the full list of content sources for an SSP to a console window. For a complete, step-by-step walkthrough of this sample code, see Procedimiento para recuperar los orígenes de contenido para un proveedor de servicios compartidos.
Prerequisites
Ensure an SSP is already created.
Project References
Add the following Project References in your console application code project before running this sample:
Microsoft.SharePoint
Microsoft.Office.Server
Microsoft.Office.Server.Search
using System;
using System.Collections;
using System.Text;
using Microsoft.Office.Server.Search.Administration;
using Microsoft.SharePoint;
namespace ContentSourcesSample
{
class Program
{
static void Main(string[] args)
{
/*
Replace <SiteName> with the name of
a site using the Shared Services Provider.
*/
string strURL = "http://<SiteName>";
SearchContext context;
using(SPSite site = new SPSite(strURL))
{
context = SearchContext.GetContext(site);
}
Content sspContent = new Content(context);
ContentSourceCollection sspContentSources = sspContent.ContentSources;
foreach (ContentSource cs in sspContentSources)
{
Console.WriteLine("NAME: " + cs.Name + " ID: " + cs.Id);
}
}
}
}
Jerarquía de herencia
System.Object
Microsoft.Office.Server.Search.Administration.Content
Seguridad de subprocesos
Todos los miembros estáticos públicos (compartidos en Visual Basic) de este tipo son seguros para la ejecución de subprocesos. No se garantiza que los miembros de instancia sean seguros para los subprocesos.
Vea también
Referencia
Content (Miembros)
Microsoft.Office.Server.Search.Administration (Espacio de nombres)
Otros recursos
Introducción al modelo de objetos de administración del motor de búsqueda Enterprise Search
Introducción a los orígenes de contenido
Administración de contenido
Procedimiento para recuperar los orígenes de contenido para un proveedor de servicios compartidos
Procedimiento para agregar un origen de contenido
Procedimiento para eliminar un origen de contenido
Procedimiento para administrar mediante programación el rastreo de un origen de contenido
Procedimiento para configurar mediante programación una programación de rastreo para un origen de contenido