Process.PeakWorkingSet Property
Gets the peak working set size for the associated process, in bytes.
Assembly: 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 Value
Type: System.Int32The maximum amount of physical memory that the associated process has required all at once, in bytes.
| Exception | Condition |
|---|---|
| PlatformNotSupportedException | The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. |
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.
for full trust for the immediate caller. This member cannot be used by partially trusted code.
Available since 1.1