depth 元素 (搜尋連接器架構)
<depth > 元素會指定搜尋連接器的範圍是否應該包含子 URL。 允許的值有 Deep
與 Shallow
。 這個專案沒有子專案,也沒有屬性。
Syntax
<!-- 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>