Process.PeakWorkingSet Property
.NET Framework 3.0
NOTE: This property is now obsolete.
Gets the peak working set size for the associated process. Namespace: System.DiagnosticsAssembly: System (in system.dll)
[ObsoleteAttribute("This property has been deprecated. Please use System.Diagnostics.Process.PeakWorkingSet64 instead. http://go.microsoft.com/fwlink/?linkid=14202")] public int PeakWorkingSet { get; }
/** @property */ public int get_PeakWorkingSet ()
public function get PeakWorkingSet () : int
Not applicable.
Property Value
The maximum amount of physical memory that the associated process has required all at once, in bytes.The working set of a process is the set of memory pages currently visible to the process in physical RAM memory. These pages are resident and available for an application to use without triggering a page fault.
The working set includes both shared and private data. The shared data includes the pages that contain all the instructions that the process executes, including process modules and the system libraries.
- LinkDemand for full trust for the immediate caller. This member cannot be used by partially trusted code.