Share via


ProcessMemoryUsageReport.PageFaultCount Property

Definition

Gets the number of memory page faults.

public:
 property unsigned int PageFaultCount { unsigned int get(); };
uint32_t PageFaultCount();
public uint PageFaultCount { get; }
var uInt32 = processMemoryUsageReport.pageFaultCount;
Public ReadOnly Property PageFaultCount As UInteger

Property Value

UInt32

unsigned int

uint32_t

The number of memory page faults.

Remarks

A memory page fault occurs when requested data is not found in memory. The system generates a fault, which normally indicates that the system looks for data in the paging file. In this circumstance, however, the missing data is identified as being located within an area of memory that cannot be paged out to disk. The system faults, but cannot find, the data and is unable to recover. Faulty hardware, a buggy system service, antivirus software, and a corrupted NTFS volume can all generate this type of error.

Applies to