: ManagedPropertyCollection (Clase) (Microsoft.Office.Server.Search.Administration)
Represents a collection of ManagedProperty objects.
Espacio de nombres:
Ensamblado: Microsoft.Office.Server.Search (in microsoft.office.server.search.dll)
Sintaxis
'Declaración
<DefaultMemberAttribute("Item")> _
<SharePointPermissionAttribute(SecurityAction.Demand, ObjectModel:=True)> _
Public NotInheritable Class ManagedPropertyCollection
Implements IEnumerable
'Uso
Dim instance As ManagedPropertyCollection
[DefaultMemberAttribute("Item")]
[SharePointPermissionAttribute(SecurityAction.Demand, ObjectModel=true)]
public sealed class ManagedPropertyCollection : IEnumerable
Comentarios
Use the AllManagedProperties property of the Schema class to get the collection of managed properties in the Shared Service Provider's search schema.
To add a new managed property to the collection, use the Create method.
Use an indexer to return a single managed property from the ManagedPropertyCollection object. For example, assuming the collection is assigned to a variable named mProperties, use mProperties[index] in Microsoft Visual C# or mProperties(index) in Microsoft Visual Basic, where index is a string containing the name of the managed property.
Ejemplo
The following code example writes out the full list of managed properties to the console window. For a complete, step-by-step walkthrough of this sample code, see Procedimiento para recuperar las propiedades administradas para un proveedor de servicios compartidos.
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;
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());
}
}
}
}
Jerarquía de herencia
System.Object
Microsoft.Office.Server.Search.Administration.ManagedPropertyCollection
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
ManagedPropertyCollection (Miembros)
Microsoft.Office.Server.Search.Administration (Espacio de nombres)