dateCreated 元素 (搜索连接器架构)

可选的 <dateCreated> 元素使用 ISO 8601 标准标识创建此搜索连接器的日期和时间。 它没有子元素,也没有属性。

语法

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

元素信息

父元素 子元素
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>