: Schema.AllManagedProperties (Propiedad) (Microsoft.Office.Server.Search.Administration)
Gets the collection of ManagedProperty objects representing managed properties in the search schema for the Shared Service Provider.
Espacio de nombres:
Ensamblado: Microsoft.Office.Server.Search (in microsoft.office.server.search.dll)
Sintaxis
'Declaración
Public ReadOnly Property AllManagedProperties As ManagedPropertyCollection
'Uso
Dim instance As Schema
Dim value As ManagedPropertyCollection
value = instance.AllManagedProperties
public ManagedPropertyCollection AllManagedProperties { get; }
Valor de propiedad
A ManagedPropertyCollection object that represents the managed properties in the search schema.
Ejemplo
The following code example writes out the full list of managed properties to the console window.
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 ManagedPropertiesSample
{
class Program
{
static void Main(string[] args)
{
try
{
//Replace <SiteName> with the name of a site using the Shared Service Provider.
string strURL = "http://<SiteName>";
Schema sspSchema = new Schema(SearchContext.GetContext(new SPSite(strURL)));
ManagedPropertyCollection properties = sspSchema.AllManagedProperties;
foreach (ManagedProperty property in properties)
{
Console.WriteLine(property.Name);
}
}
catch(Exception ex)
{
Console.WriteLine(ex.ToString());
}
}
}
}
Vea también
Referencia
Schema (Clase)
Schema (Miembros)
Microsoft.Office.Server.Search.Administration (Espacio de nombres)