LastValidationDateTime.AttemptedDateTime プロパティ

定義

最後の検証が試みられた日時を取得または設定します。

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 値。

注釈

日付と時刻データは YYYYMMDD hh:mm:ss.fffという形式の文字列で、ここで:

  • YYYY は4桁の年を表しています。

  • MM は2桁の月を表します(ゼロはパッド付き)。

  • DD は2桁の月曜日(0のパッド付き)で表します。

  • HH は2桁の時計で時間を表し、24時間時計(ゼロパッド付き)です。

  • MM は2桁(ゼロパッド付き)で分を表す。

  • SS は2桁の2桁(ゼロパッド付き)を表します。

  • FFF は秒の小数部分を3桁で表します。

例えば、18:12:00.000 20040512値は2004年5月12日午後6時12分と解釈されます。

適用対象