다음을 통해 공유


WebProcessStatistics.ProcessStartTime 속성

정의

프로세스가 시작된 시간을 가져옵니다.

public:
 property DateTime ProcessStartTime { DateTime get(); };
public DateTime ProcessStartTime { get; }
member this.ProcessStartTime : DateTime
Public ReadOnly Property ProcessStartTime As 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

적용 대상