SharePoint搜索中的默认托管属性列表

时间:2010-04-08 02:32:52

标签: sharepoint

我想在默认安装SharePoint时可用的默认托管属性是什么。还想知道maped到托管属性“ModifiedBy”的默认爬网属性名称是什么。

感谢。

1 个答案:

答案 0 :(得分:2)

不幸的是,我们已经更改了托管属性,因此我不确定默认属性的完整列表。以下是我为ModifiedBy列出的内容:

ModifiedBy
    ows_ModifiedBy
    ows_Modified_x0020_By
    8
    ows_Last_x0020_Modified

您可以在Central Admin中查看当前的托管属性。

  1. 转到中央管理员
  2. 点击左侧导航栏中的SSP名称
  3. 点击搜索管理
  4. 点击元数据属性
  5. 或者,如果您有兴趣,可以编写一个小的控制台应用程序来打印所有属性。 (reference here

    using (StreamWriter sw = new StreamWriter("output.txt", false))
    {
        ServerContext serverContext = ServerContext.GetContext("Your_SSP_Name");
        SearchContext searchContext = SearchContext.GetContext(serverContext);
        Schema schema = new Schema(searchContext);
        foreach (ManagedProperty prop in schema.AllManagedProperties)
        {
            sw.WriteLine(prop.Name);
            foreach (Mapping mapping in prop.GetMappings())
            {
                sw.WriteLine(string.Format("\t{0}", mapping.CrawledPropertyName));
            }
        }
    }