This documentation is archived and is not being maintained.
WebProcessStatistics.ProcessStartTime Property
.NET Framework (current version)
Gets the time when the process started.
Namespace:
System.Web.ManagementAssembly:
System.Web (in System.Web.dll)
Public ReadOnly Property ProcessStartTime As Date
The following code example shows how to get the ProcessStartTime value.
Public Function GetProcessStartTime() As String
' Get the process start time.
Return String.Format( _
"Process start time: {0}", _
processStatistics.ProcessStartTime.ToString())
End Function 'GetProcessStartTime
.NET Framework
Available since 2.0
Return to top