ProcessMemoryUsageReport.WorkingSetSizeInBytes 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 amount of physical memory allocated for the associated process.
public:
property unsigned long long WorkingSetSizeInBytes { unsigned long long get(); };
uint64_t WorkingSetSizeInBytes();
public ulong WorkingSetSizeInBytes { get; }
var uInt64 = processMemoryUsageReport.workingSetSizeInBytes;
Public ReadOnly Property WorkingSetSizeInBytes As ULong
Property Value
The amount of physical memory, in bytes, allocated for the associated process.
Remarks
The value returned by this property represents the current size of working set memory used by the process. 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 in the process modules and the system libraries.