scopeItem url 要素 (検索コネクタ スキーマ)
url> 要素は<、検索コネクタのスコープを表す URL を指定します。 この要素には子要素がなく、属性もありません。
構文
<!-- url -->
<xs:complexType name="searchConnectorDescriptionType">
<xs:all>
...
<xs:element name="scope" minOccurs="0">
<xs:complexType>
<xs:sequence minOccurs="0"><xs:all>
<xs:element name="scopeItem" maxOccurs="unbounded">
<xs:complexType>
<xs:all>
...
<xs:element name="url" type="xs:anyURI"/>
</xs:all>
</xs:complexType>
</xs:element>
</xs:sequence></xs:all>
</xs:complexType>
</xs:element>
...
</xs:all>
<xs:attribute name="publisher" type="xs:string"/>
<xs:attribute name="product" type="xs:string"/>
</xs:complexType>
要素情報
Parent 要素 | 子要素 |
---|---|
scopeItem 要素 (検索コネクタ スキーマ) |
解説
値には、ローカル ファイル システムパスまたは 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>Exclude</mode>
<depth>Deep</depth>
<url>C:\ExampleFolder\ExcludeMe</url>
</scopeItem>
</scope>
...
</searchConnectionDescription>