WebProcessStatistics.PeakWorkingSet Propriété

Définition

Obtient le jeu de travail de pointe pour la durée de vie du processus à ce jour.

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

Valeur de propriété

Ensemble de travail maximal du 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 à