WebProcessStatistics.ProcessStartTime Property

 

Gets the time when the process started.

Namespace:   System.Web.Management
Assembly:  System.Web (in System.Web.dll)

Public ReadOnly Property ProcessStartTime As Date

Property Value

Type: System.DateTime

The DateTime when the process started.

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
Show: