WebProcessStatistics.ProcessStartTime 属性     
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取进程的启动时间。
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