Share via


ProcessMemoryUsageReport.NonPagedPoolSizeInBytes Property

Definition

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

UInt64

unsigned long long

uint64_t

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.

Applies to