次の方法で共有


mode 要素 (Search Connector スキーマ)

mode> 要素は<、URL を検索コネクタのスコープに含めるか除外するかを指定します。 指定できる値は、IncludeExclude です。 この要素には子要素がなく、属性もありません。

構文

<!-- mode -->
    <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:simpleType>
                                        <xs:restriction base="xs:string">
                                            <xs:enumeration value="Include"/>
                                            <xs:enumeration value="Exclude"/>
                                        </xs:restriction>
                                    </xs:simpleType>
                                </xs:element>
                                ...
                            </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 要素 子要素
scopeItem 要素 (Search Connector スキーマ)  

 

解説

除外されたスコープを検索または参照することはできません。 scopeItem URL を入れ子にすることができます。 たとえば、親スコープとそのすべての子を含めることができますが、含まれるように親 URL を追加し、深さの値を Deep にして、子 URL を除外します。

次の例は、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>Include</mode>
            <depth>Shallow</depth>
            <url>C:\ExampleFolder\ExcludeMe</url>
        </scopeItem>
    </scope>
    ...
</searchConnectionDescription>