Partager via


WebProcessStatistics.PeakWorkingSet Propriété

Définition

Obtient le nombre de jeux de travail maximal pour la durée de vie du processus en cours.

public:
 property long PeakWorkingSet { long get(); };
public long PeakWorkingSet { get; }
member this.PeakWorkingSet : int64
Public ReadOnly Property PeakWorkingSet As Long

Valeur de propriété

Int64

Nombre de jeux de travail maximal pour le processus.

Exemples

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

public string GetPeakWorkingSet()
{
    // Get the peak working set.
    return (string.Format(
        "Peak working set: {0}",
        processStatistics.PeakWorkingSet.ToString()));
}
Public Function GetPeakWorkingSet() As String
    ' Get the peak working set.
    Return String.Format( _
    "Peak working set: {0}", _
    processStatistics.PeakWorkingSet.ToString())
End Function 'GetPeakWorkingSet

S’applique à