Bagikan melalui


Elemen kedalaman (Skema Konektor Pencarian)

Elemen <kedalaman> menentukan apakah cakupan konektor pencarian harus menyertakan URL anak. Nilai yang diizinkan adalah Deep dan Shallow. Elemen ini tidak memiliki elemen turunan dan tidak ada atribut.

Sintaks

<!-- depth -->
    <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="depth" default="Shallow" minOccurs="0">
                                    <xs:simpleType>
                                        <xs:restriction base="xs:string">
                                            <xs:enumeration value="Shallow"/>
                                            <xs:enumeration value="Deep"/>
                                        </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>

Informasi Elemen

Elemen Induk Elemen Anak
Elemen scopeItem (Skema Konektor Pencarian)  

 

Keterangan

Jika kedalamannya mendalam, pengguna dapat menelusuri atau mencari item di tingkat URL scopeItem atau dalam URL anak apa pun.

Contoh

Contoh berikut menunjukkan cakupan pencarian yang menyertakan C:\FolderA dan semua folder turunannya dan C:\FolderB tetapi tidak ada folder turunannya.

<?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:\FolderA</url>
        </scopeItem>
        <scopeItem>
            <mode>Include</mode>
            <depth>Shallow</depth>
            <url>C:\FolderB</url>
        </scopeItem>
    </scope>
    ...
</searchConnectionDescription>