关键字
元素层次结构
- <性能>
- <关键字>
语法
<Keywords>
<!-- Child elements -->
Keyword+
</Keywords>
键
+
需要 (一个或多个)
特性和元素
特性
无。
子元素
子元素 | 说明 |
---|---|
关键字 | 描述该项 的 System.Keywords 之一。 |
父元素
父元素 | 说明 |
---|---|
属性 | 包含描述搜索索引中Windows的属性。 |
示例
此示例演示一个简单的 appcontent-ms 文件,该文件描述名为"Sample 1"的项。
请注意,该文件包含 appcontent-ms 架构未定义的元素: 和 IndexerSampleInformation
IndexerSampleSpecificElement
。 appcontent-ms 文件必须具有一个根节点,该根节点封装要编制索引的所有数据,但你可以将节点命名为任何需要的名称。
<?xml version="1.0" encoding="utf-8"?>
<IndexerSampleInformation>
<Properties xmlns="http://schemas.microsoft.com/Search/2013/ApplicationContent">
<Name>Sample 1</Name>
<Keywords>
<Keyword xml:lang="en-US">Sample 1 - keyword 1</Keyword>
<Keyword>Sample 1 - keyword 2</Keyword>
</Keywords>
<Comment>Sample 1 comment</Comment>
<AdditionalProperties>
<Property Key="System.Title">Sample 1 Title</Property>
<Property xml:lang="en-US" Key="System.Contact.EmailAddresses">
<Value>bryan@contoso.com</Value>
<Value>vincent@contoso.com</Value>
</Property>
</AdditionalProperties>
</Properties>
<IndexerSampleSpecificElement sc:IndexableContent="true"
xmlns:sc="http://schemas.microsoft.com/Search/2013/ApplicationContent">
The text included here will be indexed, enabling full-text search.
</IndexerSampleSpecificElement>
</IndexerSampleInformation>
甚至可以告知Windows搜索为任意元素的内容编制索引。 只需使用 IndexableContent 属性告知 Search 为内容编制索引。 在上一示例中,Windows将索引 IndexerSampleSpecificElement 的内容,因为 IndexableContent 属性设置为 true:
<IndexerSampleSpecificElement sc:IndexableContent="true"
xmlns:sc="http://schemas.microsoft.com/Search/2013/ApplicationContent">
The text included here will be indexed, enabling full-text search.
</IndexerSampleSpecificElement>
默认情况下,搜索将内容视为文本内容;如果内容为 base64,则 使用 ContentType 属性指定 MIME 类型。
下一个示例演示如何将 appcontent-ms 文件复制到应用的 LocalFolder\Indexed 文件夹。 该代码将应用 appcontent-ms 文件夹中找到的任何文件复制到 LocalFolder\Indexed 文件夹。 (还可以直接在索引文件夹中创建新的 appcontent-ms 文件,而不是从另一个位置复制这些文件。)
/// <summary>
/// For the purposes of this sample, the appcontent-ms files are stored in an "appcontent-ms" folder in the
/// install directory. These are then copied into the app's "LocalState\Indexed" folder, which exposes them
/// to the indexer.
/// </summary>
public async static Task<string> AddAppContentFilesToIndexedFolder()
{
var localFolder = Windows.Storage.ApplicationData.Current.LocalFolder;
var installDirectory = Windows.ApplicationModel.Package.Current.InstalledLocation;
var outputString = "Items added to the \"Indexed\" folder:";
var appContentFolder = await installDirectory.GetFolderAsync("appcontent-ms");
var indexedFolder = await localFolder.CreateFolderAsync(
"Indexed", Windows.Storage.CreationCollisionOption.OpenIfExists);
var files = await appContentFolder.GetFilesAsync();
foreach (var file in files)
{
outputString += "\n" + file.DisplayName + file.FileType;
await file.CopyAsync(indexedFolder,
file.Name, Windows.Storage.NameCollisionOption.ReplaceExisting);
}
return outputString;
}
// For the purposes of this sample, the appcontent-ms files are stored in an "appcontent-ms" folder
// in the install directory. These are then copied into the app's "LocalState\Indexed" folder,
// which exposes them to the indexer.
function _addAppContentFilesToIndexedFolder() {
var localFolder = appData.localFolder,
appcontentFolder,
indexedFolder,
installDirectory = Windows.ApplicationModel.Package.current.installedLocation;
var output = "Items added to the \"Indexed\" folder:\n";
installDirectory.getFolderAsync("appcontent-ms").then(function (retrievedAppcontentFolder) {
appcontentFolder = retrievedAppcontentFolder;
return localFolder.createFolderAsync(
"Indexed", Windows.Storage.CreationCollisionOption.openIfExists);
}).then(function (retrievedIndexedFolder) {
indexedFolder = retrievedIndexedFolder;
return appcontentFolder.getFilesAsync(appcontentFolder);
}).then(function (files) {
var promiseArray = [];
for (var i = 0, len = files.length; i < len; i++) {
promiseArray[i] = files[i].copyAsync(indexedFolder,
files[i].name, Windows.Storage.NameCollisionOption.replaceExisting);
output += files[i].displayName + files[i].fileType;
if (i < len - 1) {
output += "\n";
}
}
return WinJS.Promise.join(promiseArray);
}).done(function () {
WinJS.log && WinJS.log(output, "sample", "status");
});
}
有关完整代码,请参阅 索引器示例。
请参阅
要求
值 | |
---|---|
Namespace | http://schemas.microsoft.com/Search/2013/ApplicationContent |