Schema.AllManagedProperties, propriété (Microsoft.Office.Server.Search.Administration)
Gets the collection of ManagedProperty objects representing managed properties in the search schema for the Shared Service Provider.
Espace de noms : Microsoft.Office.Server.Search.Administration
Assembly : Microsoft.Office.Server.Search (dans microsoft.office.server.search.dll)
Syntaxe
'Déclaration
Public ReadOnly Property AllManagedProperties As ManagedPropertyCollection
'Utilisation
Dim instance As Schema
Dim value As ManagedPropertyCollection
value = instance.AllManagedProperties
public ManagedPropertyCollection AllManagedProperties { get; }
Valeur de la propriété
A ManagedPropertyCollection object that represents the managed properties in the search schema.
Exemple
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());
}
}
}
}
Voir aussi
Référence
Schema, classe
Membres Schema
Microsoft.Office.Server.Search.Administration, espace de noms