SharePoint 2007 ResultTable 对象的 GetString 方法中有哪些字段可用?

发布于 2024-10-19 21:43:43 字数 249 浏览 2 评论 0原文

我正在编写一个自定义搜索结果页面,我想使用 ResultsTable 对象中可用的一些元数据来对我的结果进行分类和标记。例如,我知道,如果您有 ResultTable rt 并运行 rt.GetString(5),您将获得与搜索匹配的项目的路径,如果您运行 rt.GetString(13),您可以获得一个字符串(包含一个数值)指示 URL 是否指向二进制文件。我想知道此方法还可以使用哪些其他参数以及它们返回什么。特别是,我希望其中一个参数将使该方法指示搜索结果是子网站还是文件夹。

I am writing a custom search results page and I want to use some of the metadata available within a ResultsTable object to categorize and mark up my results. I am aware, for example, that if you have ResultTable rt and run rt.GetString(5), you will get a path to the item that matched the search, and if you run rt.GetString(13) you can get a string (containing a numeric value) indicating if the URL points to a binary file. I would like to know what other parameters to this method are possible and what they return. In particular I am hoping that one of the parameters will cause the method to indicate if the search result is a subweb vs a folder.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

毁梦 2024-10-26 21:43:43

对同一个对象使用 GetName 方法,我发现有 15 个值。这些名称说明了它们的含义:

0: WorkId //eg "867"
1: Rank //eg "861"
2: Title //eg "Untitled Document"
3: Author //eg "System Account"
4: Size //eg "5366"
5: Path //eg "http://myserver:42801/Pages/test.html"
6: Description //blank for me
7: Write //eg "03/17/2010 10:28:29"
8: SiteName //eg "http://myserver:14286"
9: CollapsingStatus //eg "0" no idea what this means
10: HitHighlightedSummary //eg "Test page 2"
11: HitHighlightedProperties //eg "Untitled Documenthttp://myserver:42801/Pages/test.html"
12: ContentClass //eg "STS_ListItem_850"
13: IsDocument //eg "1"
14: PictureThumbnailURL //blank for me 

Using the GetName method on the same object I discovered that there are 15 values. The names shed some light on what they are:

0: WorkId //eg "867"
1: Rank //eg "861"
2: Title //eg "Untitled Document"
3: Author //eg "System Account"
4: Size //eg "5366"
5: Path //eg "http://myserver:42801/Pages/test.html"
6: Description //blank for me
7: Write //eg "03/17/2010 10:28:29"
8: SiteName //eg "http://myserver:14286"
9: CollapsingStatus //eg "0" no idea what this means
10: HitHighlightedSummary //eg "Test page 2"
11: HitHighlightedProperties //eg "Untitled Documenthttp://myserver:42801/Pages/test.html"
12: ContentClass //eg "STS_ListItem_850"
13: IsDocument //eg "1"
14: PictureThumbnailURL //blank for me 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文