ProcessMemoryUsageReport.PeakNonPagedPoolSizeInBytes 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 non-paged memory used by the process, in bytes.
public:
property unsigned long long PeakNonPagedPoolSizeInBytes { unsigned long long get(); };
uint64_t PeakNonPagedPoolSizeInBytes();
public ulong PeakNonPagedPoolSizeInBytes { get; }
var uInt64 = processMemoryUsageReport.peakNonPagedPoolSizeInBytes;
Public ReadOnly Property PeakNonPagedPoolSizeInBytes As ULong
Property Value
The maximum amount of non-paged memory used by the process, in bytes.
Remarks
The value returned by this property value represents the maximum size of non-paged memory used by the process since it started. The operating system uses the virtual memory paging file in conjunction with physical memory to manage the virtual address space for each process. When pageable memory is not in use, it can be transferred to the virtual memory paging file on disk.