次の方法で共有


propertyStore 要素 (検索コネクタ スキーマ)

省略可能な <propertyStore> 要素は、この検索コネクタの開いているメタデータを格納する XML ベースの IPropertyStore の場所を指定します。 この要素には属性がなく、子要素は 1 つだけです。

構文

<!-- propertyStore -->
    <xs:complexType name="searchConnectorDescriptionType">
        <xs:all>
        ...
        <xs:element name="propertyStore" type="propertyStoreType" minOccurs="0">
            <xs:element name="property" minOccurs="0" maxOccurrs="unbounded"/>
        </xs:element>
        ...
        </xs:all>
        <xs:attribute name="publisher" type="xs:string"/>
        <xs:attribute name="product" type="xs:string"/>
    </xs:complexType>

要素情報

Parent 要素 子要素
searchConnectorDescriptionType 要素 (検索コネクタ スキーマ) propertyStore の property 要素 (検索コネクタ スキーマ)

 

次の例は、2 つの<プロパティ要素を<持つ propertyStore>> 要素を示しています。

<propertyStore>
    <property name="OpenSearchHTMLRolloverTemplate">https://www.adventureworks.com/Search/?Query={searchTerms}</property>
    <property name="isExternal" type="boolean">true</property>
</propertyStore>