Freigeben über


propertyStore-Element (Suchconnectorschema)

Das optionale <propertyStore-Element> gibt den Speicherort eines XML-basierten IPropertyStore an, an dem offene Metadaten für diesen Suchconnector gespeichert werden. Dieses Element hat keine Attribute und nur ein untergeordnetes Element.

Syntax

<!-- 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>

Elementinformationen

Übergeordnetes Element Untergeordnete Elemente
searchConnectorDescriptionType-Element (Search Connector Schema) property Element of propertyStore (Search Connector Schema)

 

Beispiel

Das folgende Beispiel zeigt ein <propertyStore-Element> mit zwei <Eigenschaftenelementen> .

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