WebProcessStatistics.ProcessStartTime Eigenschap

Definitie

Hiermee haalt u het tijdstip op waarop het proces is gestart.

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

Waarde van eigenschap

Het DateTime moment waarop het proces is gestart.

Voorbeelden

In het volgende codevoorbeeld ziet u hoe u de ProcessStartTime waarde kunt ophalen.

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

Van toepassing op