ProcessMemoryUsageReport.NonPagedPoolSizeInBytes 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 non-paged memory available to the process, in bytes.
public:
property unsigned long long NonPagedPoolSizeInBytes { unsigned long long get(); };
uint64_t NonPagedPoolSizeInBytes();
public ulong NonPagedPoolSizeInBytes { get; }
var uInt64 = processMemoryUsageReport.nonPagedPoolSizeInBytes;
Public ReadOnly Property NonPagedPoolSizeInBytes As ULong
Property Value
The amount of non-paged memory available to the process, in bytes.
Remarks
The value returned by this property represents the current size of nonpaged system memory used by the process. System memory is the physical memory used by the operating system, and is divided into paged and nonpaged pools. Nonpaged memory allocations remain in system memory and are not paged out to the virtual memory paging file.