LastValidationDateTime.AttemptedDateTime 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置上次尝试进行验证的日期和时间。
public:
property System::String ^ AttemptedDateTime { System::String ^ get(); void set(System::String ^ value); };
public string AttemptedDateTime { get; set; }
member this.AttemptedDateTime : string with get, set
Public Property AttemptedDateTime As String
属性值
一个 String 表示日期和时间的值。
注解
日期和时间数据是格式为 YYYYYMMDD hh:mm:ss.fff 的字符串,其中:
YYYY 表示四位数的年份。
MM 表示两位数的月份, (零填充) 。
DD 表示以两位数表示月份的日期, (零填充) 。
hh 表示使用两个数字的小时,一个 24 小时制 (零填充) 。
mm 表示两位数字中的分钟, (零填充) 。
ss 表示两位数字中的第二位, (零填充) 。
fff 表示以三位数表示第二部分的小数部分。
例如,值20040512 18:12:00.000 解释为 2004 年 5 月 12 日下午 6:12。