WebProcessStatistics.ProcessStartTime プロパティ

定義

プロセスが開始された時刻を取得します。

public:
 property DateTime ProcessStartTime { DateTime get(); };
public DateTime ProcessStartTime { get; }
member this.ProcessStartTime : DateTime
Public ReadOnly Property ProcessStartTime As DateTime

プロパティ値

DateTime

プロセスが開始された時刻の DateTime

次のコード例は、値を取得する方法を ProcessStartTime 示しています。

public string GetProcessStartTime()
{
    // Get the process start time.
    return (string.Format(
        "Process start time: {0}",
        processStatistics.ProcessStartTime.ToString()));
}
Public Function GetProcessStartTime() As String
    ' Get the process start time.
    Return String.Format( _
    "Process start time: {0}", _
    processStatistics.ProcessStartTime.ToString())
End Function 'GetProcessStartTime

適用対象