scopeItem 元素 (搜索连接器架构)

<scopeItem> 元素表示排除/包含范围表中的单个条目。 <scopeItem> 通过添加三个新元素来扩展标准 shellLinkType 类型,这些元素控制文件夹的包含和排除、控制结果深度以及指定范围的位置。 <如果 scope> 元素存在,则此元素是必需的。 它有三个子元素,没有属性。

语法

<!-- scopeItem -->
    <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:complexType>
                            <xs:all>
                                <xs:element name="mode" default="Include">
                                    ...
                                </xs:element>
                                <xs:element name="depth" default="Shallow" minOccurs="0">
                                    ...
                                </xs:element>
                                <xs:element name="url" type="xs:anyURI"/>
                            </xs:all>
                        </xs:complexType>
                    </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>

元素信息

父元素 子元素
scope 元素 (搜索连接器架构) scope 元素 (搜索连接器架构)
  scope 元素 (搜索连接器架构)
  scopeItem url 元素 (搜索连接器架构)

 

备注

<使用 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>