scope 元素 (搜索连接器架构)
可选的 <scope> 元素指定 scopeItem> 元素的<集合,这些元素定义此特定搜索连接器的范围包含和排除项。 如果 <scope> 存在,则它必须至少包含一个 <scopeItem> 元素。 此元素没有属性。
语法
<!-- scope -->
<xs:complexType name="searchConnectorDescriptionType">
<xs:all>
...
<xs:element name="scope" minOccurs="0">
<xs:complexType>
<xs:sequence minOccurs="0">
<xs:element name="scopeItem" maxOccurs="unbounded">
...
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
...
</xs:all>
<xs:attribute name="publisher" type="xs:string"/>
<xs:attribute name="product" type="xs:string"/>
</xs:complexType>
元素信息
父元素 | 子元素 |
---|---|
searchConnectorDescriptionType 元素 (搜索连接器架构) | scopeItem 元素 (搜索连接器架构) 。 |
备注
<使用 scope> 和 <scopeItem> 元素确定应搜索的位置以及应从搜索中排除的位置。
示例
以下示例显示了一个搜索范围,其中包含 C:\ExampleFolder 及其除 C:\ExampleFolder\ExcludeMe 之外的所有子文件夹。
<?xml version="1.0" encoding="UTF-8"?>
<searchConnectorDescription xmlns="http://schemas.microsoft.com/windows/2009/searchConnector">
...
<scope>
<scopeItem>
<mode>Include</mode>
<depth>Deep</depth>
<url>C:\ExampleFolder</url>
</scopeItem>
<scopeItem>
<mode>Exclude</mode>
<depth>Deep</depth>
<url>C:\ExampleFolder\ExcludeMe</url>
</scopeItem>
</scope>
...
</searchConnectionDescription>