ProcessPerfDataInfoWorkingSetPeak Property |
Win32_PerfFormattedData_PerfProc_Process: Maximum number, in bytes, in the working set of
this process at any point. 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 WorkingSetPeak { get; set; }
<DataMemberAttribute>
Public Property WorkingSetPeak As Long
Get
Set
public:
[DataMemberAttribute]
virtual property long long WorkingSetPeak {
long long get () sealed;
void set (long long value) sealed;
}
[<DataMemberAttribute>]
abstract WorkingSetPeak : int64 with get, set
[<DataMemberAttribute>]
override WorkingSetPeak : int64 with get, set
Property Value
Type:
Int64
The working set peak.
Implements
IProcessPerfDataInfoWorkingSetPeakSee Also