Partager via


WebProcessStatistics.ProcessStartTime Propriété

Définition

Obtient l'heure à laquelle le processus a démarré.

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

Valeur de propriété

DateTime

DateTime à laquelle le processus a démarré.

Exemples

L’exemple de code suivant montre comment obtenir la ProcessStartTime valeur.

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

S’applique à