ProcessMemoryUsageReport.PeakWorkingSetSizeInBytes Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the maximum amount of physical memory used by the associated process.
public:
property unsigned long long PeakWorkingSetSizeInBytes { unsigned long long get(); };
uint64_t PeakWorkingSetSizeInBytes();
public ulong PeakWorkingSetSizeInBytes { get; }
var uInt64 = processMemoryUsageReport.peakWorkingSetSizeInBytes;
Public ReadOnly Property PeakWorkingSetSizeInBytes As ULong
Property Value
The maximum amount of physical memory, in bytes, allocated for the associated process since it was started.
Remarks
The value returned by this property represents the maximum size of working set memory used by the process since it started. 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 instructions from the process modules and the system libraries.