Process.PeakWorkingSet Eigenschaft

Definition

Achtung

This property has been deprecated. Please use System.Diagnostics.Process.PeakWorkingSet64 instead. https://go.microsoft.com/fwlink/?linkid=14202

Achtung

Process.PeakWorkingSet has been deprecated because the type of the property can't represent all valid results. Use System.Diagnostics.Process.PeakWorkingSet64 instead.

Achtung

This property has been deprecated. Please use System.Diagnostics.Process.PeakWorkingSet64 instead. http://go.microsoft.com/fwlink/?linkid=14202

Achtung

Use PeakWorkingSet64

Ruft die maximale Größe des Workingsets für den zugeordneten Prozess in Bytes ab.

public:
 property int PeakWorkingSet { int get(); };
[System.Obsolete("This property has been deprecated.  Please use System.Diagnostics.Process.PeakWorkingSet64 instead.  https://go.microsoft.com/fwlink/?linkid=14202")]
public int PeakWorkingSet { get; }
[System.Obsolete("Process.PeakWorkingSet has been deprecated because the type of the property can't represent all valid results. Use System.Diagnostics.Process.PeakWorkingSet64 instead.")]
public int PeakWorkingSet { get; }
[System.Obsolete("This property has been deprecated.  Please use System.Diagnostics.Process.PeakWorkingSet64 instead.  http://go.microsoft.com/fwlink/?linkid=14202")]
public int PeakWorkingSet { get; }
public int PeakWorkingSet { get; }
[System.Obsolete("Use PeakWorkingSet64")]
public int PeakWorkingSet { get; }
[<System.Obsolete("This property has been deprecated.  Please use System.Diagnostics.Process.PeakWorkingSet64 instead.  https://go.microsoft.com/fwlink/?linkid=14202")>]
member this.PeakWorkingSet : int
[<System.Obsolete("Process.PeakWorkingSet has been deprecated because the type of the property can't represent all valid results. Use System.Diagnostics.Process.PeakWorkingSet64 instead.")>]
member this.PeakWorkingSet : int
[<System.Obsolete("This property has been deprecated.  Please use System.Diagnostics.Process.PeakWorkingSet64 instead.  http://go.microsoft.com/fwlink/?linkid=14202")>]
member this.PeakWorkingSet : int
member this.PeakWorkingSet : int
[<System.Obsolete("Use PeakWorkingSet64")>]
member this.PeakWorkingSet : int
Public ReadOnly Property PeakWorkingSet As Integer

Eigenschaftswert

Int32

Die maximale Größe des physischen Speichers in Bytes, den der zugeordnete Prozess gleichzeitig angefordert hat.

Attribute

Hinweise

Der Arbeitssatz eines Prozesses ist der Satz von Arbeitsspeicherseiten, die derzeit für den Prozess im physischen RAM-Arbeitsspeicher sichtbar sind. Diese Seiten sind resident und können von einer Anwendung verwendet werden, ohne dass ein Seitenfehler ausgelöst wird.

Der Arbeitssatz enthält sowohl freigegebene als auch private Daten. Die freigegebenen Daten enthalten die Seiten, die alle Anweisungen enthalten, die der Prozess ausführt, einschließlich Prozessmodule und systembibliotheken.

Gilt für

Siehe auch