: ContentSource.Delete (Método) (Microsoft.Office.Server.Search.Administration)
Deletes the content source.
Espacio de nombres:
Ensamblado: Microsoft.Office.Server.Search (in microsoft.office.server.search.dll)
Sintaxis
'Declaración
Public Sub Delete
'Uso
Dim instance As ContentSource
instance.Delete
public void Delete ()
Ejemplo
The following code example deletes a content source from a Shared Service Provider's collection of content sources. For a complete, step-by-step walkthrough of this sample code, see Procedimiento para eliminar un origen de contenido.
Prerequisites
Ensure a Shared Service Provider 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.Generic;
using System.Text;
using Microsoft.Office.Server.Search.Administration;
using Microsoft.SharePoint;
namespace DeleteContentSourceSample
{
class Program
{
static void Main(string[] args)
{
try
{
//Replace <SiteName> with the name of a site using the Shared Service Provider.
string strURL = "<SiteURL>";
Content sspContent = new Content(SearchContext.GetContext(new SPSite(strURL)));
ContentSourceCollection sspContentSources = sspContent.ContentSources;
//Replace <ContentSourceName> with the ID for the content source to delete.
string strCSName = "<ContentSourceName>";
ContentSource contentSource = sspContentSources[strCSName];
contentSource.Delete();
Console.WriteLine(strCSName + " deleted.");
}
catch (Exception e)
{
Console.WriteLine(e.ToString());
}
}
}
}
Vea también
Referencia
ContentSource (Clase)
ContentSource (Miembros)
Microsoft.Office.Server.Search.Administration (Espacio de nombres)
Content (Clase)
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