C# Class Tao.Platform.Windows.Kernel.MEMORYSTATUS

Show file Open project: WolfgangSt/axiom

Public Properties

Property Type Description
AvailPageFile int
AvailPhys int
AvailVirtual int
Length int
MemoryLoad int
TotalPageFile int
TotalPhys int
TotalVirtual int

Property Details

AvailPageFile public property

Size of available memory to commit, in bytes.
public int AvailPageFile
return int

AvailPhys public property

Size of physical memory available, in bytes.
public int AvailPhys
return int

AvailVirtual public property

Size of unreserved and uncommitted memory in the user mode portion of the virtual address space of the calling process, in bytes.
public int AvailVirtual
return int

Length public property

Size of the MEMORYSTATUS data structure, in bytes. You do not need to set this member before calling the GlobalMemoryStatus function; the function sets it.
public int Length
return int

MemoryLoad public property

Approximate percentage of total physical memory that is in use.

Windows NT: Percentage of approximately the last 1000 pages of physical memory that is in use.

public int MemoryLoad
return int

TotalPageFile public property

Size of the committed memory limit, in bytes.
public int TotalPageFile
return int

TotalPhys public property

Total size of physical memory, in bytes.
public int TotalPhys
return int

TotalVirtual public property

Total size of the user mode portion of the virtual address space of the calling process, in bytes.
public int TotalVirtual
return int