共用方式為


dateCreated 元素 (搜尋連接器架構)

選擇性 < dateCreated > 元素會使用 ISO 8601 標準,識別建立此搜尋連接器的日期和時間。 它沒有子專案,也沒有屬性。

Syntax

<!-- dateCreated -->
    <xs:complexType name="searchConnectorDescriptionType">
        <xs:all>
            ...
            <xs:element name="dateCreated" type="xs:dateTime" minOccurs="0"/>
            ...
        </xs:all>
        <xs:attribute name="publisher" type="xs:string"/>
        <xs:attribute name="product" type="xs:string"/>
    </xs:complexType>

項目資訊

Parent 項目 子元素
searchConnectorDescriptionType 元素 (搜尋連接器架構)  

 

備註

這個專案值的格式遵循 ISO 8601 標準。 常見的用法如下:

  • [YYYY]-[MM]-[DD]T[hh]:[mm]:[ss]±[hh]:[mm] (「1981-04-05T14:30:30-05:00」)
  • [YYYY][MM][DD]T[hh][mm][ss]Z (「19810405T193030Z」)

範例

<?xml version="1.0" encoding="UTF-8"?>
<searchConnectorDescription xmlns="https://schemas.adventureworks.com/searchConnector">
    ...
    <dateCreated>2009-04-05T12:00:00-05:00</dateCreated>
    ...
</searchConnectionDescription>