WebProcessStatistics.ProcessStartTime Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
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 à 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