TimeProvider.GetElapsedTime Méthode
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.
Surcharges
GetElapsedTime(Int64) |
Obtient le temps écoulé depuis la |
GetElapsedTime(Int64, Int64) |
Obtient le temps écoulé entre deux horodatages récupérés à l’aide de GetTimestamp(). |
GetElapsedTime(Int64)
- Source:
- TimeProvider.cs
- Source:
- TimeProvider.cs
Obtient le temps écoulé depuis la startingTimestamp
valeur récupérée à l’aide de GetTimestamp().
public:
TimeSpan GetElapsedTime(long startingTimestamp);
public TimeSpan GetElapsedTime (long startingTimestamp);
member this.GetElapsedTime : int64 -> TimeSpan
Public Function GetElapsedTime (startingTimestamp As Long) As TimeSpan
Paramètres
- startingTimestamp
- Int64
Horodatage marquant le début de la période.
Retours
Une TimeSpan pour le temps écoulé entre l’horodatage de début et l’heure de cet appel.
S’applique à
GetElapsedTime(Int64, Int64)
- Source:
- TimeProvider.cs
- Source:
- TimeProvider.cs
Obtient le temps écoulé entre deux horodatages récupérés à l’aide de GetTimestamp().
public:
TimeSpan GetElapsedTime(long startingTimestamp, long endingTimestamp);
public TimeSpan GetElapsedTime (long startingTimestamp, long endingTimestamp);
member this.GetElapsedTime : int64 * int64 -> TimeSpan
Public Function GetElapsedTime (startingTimestamp As Long, endingTimestamp As Long) As TimeSpan
Paramètres
- startingTimestamp
- Int64
Horodatage marquant le début de la période.
- endingTimestamp
- Int64
Horodatage marquant la fin de la période.
Retours
Une TimeSpan pour le temps écoulé entre les horodatages de début et de fin.