ProcessPerfDataInfoWorkingSet Property |
Win32_PerfFormattedData_PerfProc_Process: Maximum number, in bytes, in the working set of
this process at any point in time. The working set is the set of memory pages touched
recently by the threads in the process. If free memory in the computer is above a threshold,
pages are left in the working set of a process even if they are not in use. When free memory
falls below a threshold, pages are trimmed from working sets. If they are required, they
are then soft-faulted back into the working set before they leave main memory.
Namespace:
Xcalibur.Models.Processes
Assembly:
Xcalibur.Models (in Xcalibur.Models.dll) Version: 1.0.5.0 (1.0.0.0)
Syntax [DataMemberAttribute]
public long WorkingSet { get; set; }
<DataMemberAttribute>
Public Property WorkingSet As Long
Get
Set
public:
[DataMemberAttribute]
virtual property long long WorkingSet {
long long get () sealed;
void set (long long value) sealed;
}
[<DataMemberAttribute>]
abstract WorkingSet : int64 with get, set
[<DataMemberAttribute>]
override WorkingSet : int64 with get, set
Property Value
Type:
Int64
The working set.
Implements
IProcessPerfDataInfoWorkingSetSee Also