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 桁 (ゼロ埋め込み) で表します。

  • hh は、2 桁の数字 、24 時間時計 (ゼロ埋め込み) を使用して時間を表します。

  • mm は、2 桁の分 (ゼロ埋め込み) を表します。

  • ss は 2 桁の 2 桁の 2 番目を表します (0 が埋め込まれています)。

  • fff は、2 番目の小数部を 3 桁で表します。

たとえば、値 20040512 18:12:00.000 は、2004 年 5 月 12 日の午後 6 時 12 分を意味します。

適用対象