depth 要素 (検索コネクタ スキーマ)
depth> 要素は<、検索コネクタのスコープに子 URL を含めるかどうかを指定します。 指定できる値は、Deep
と Shallow
です。 この要素には子要素がなく、属性もありません。
構文
<!-- 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>
要素情報
Parent 要素 | 子要素 |
---|---|
scopeItem 要素 (検索コネクタ スキーマ) |
解説
深さが深い場合、ユーザーは scopeItem の URL レベルまたは任意の子 URL 内のアイテムを参照または検索できます。
例
次の例は、C:\FolderA とそのすべての子フォルダーと C:\FolderB を含むが、その子フォルダーを含む検索範囲を示しています。
<?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>