Share via


ProcessMemoryUsageReport.WorkingSetSizeInBytes Property

Definition

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

UInt64

unsigned long long

uint64_t

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.

Applies to

See also