共用方式為


scopeItem 元素 (搜尋連接器架構)

<scopeItem > 元素代表排除/包含範圍資料表中的單一專案。 <scopeItem > 藉由新增三個新元素來控制資料夾的包含和排除、控制結果的深度,以及指定範圍的位置,藉此擴充標準 ShellLinkType 類型。 <如果 scope > 元素存在,則需要此元素。 它有三個子項目,而且沒有屬性。

Syntax

<!-- 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>

項目資訊

Parent 項目 子元素
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>