SystemMemoryUsageReport SystemMemoryUsageReport SystemMemoryUsageReport SystemMemoryUsageReport Class

Definition

Provides data about the memory usage of the system.

public : sealed class SystemMemoryUsageReport : ISystemMemoryUsageReportpublic sealed class SystemMemoryUsageReport : ISystemMemoryUsageReportPublic NotInheritable Class SystemMemoryUsageReport Implements ISystemMemoryUsageReport// You can use this class in JavaScript.
Attributes
Windows 10 requirements
Device family
Windows 10 Creators Update (introduced v10.0.15063.0)
API contract
Windows.Foundation.UniversalApiContract (introduced v4)

Remarks

Call SystemMemoryUsage.GetReport to get an instance of this class.

Properties

AvailableSizeInBytes AvailableSizeInBytes AvailableSizeInBytes AvailableSizeInBytes

Gets the amount of system memory available in bytes.

public : ulong AvailableSizeInBytes { get; }public ulong AvailableSizeInBytes { get; }Public ReadOnly Property AvailableSizeInBytes As ulong// You can use this property in JavaScript.
Value
ulong ulong ulong ulong

The amount of system memory available in bytes.

CommittedSizeInBytes CommittedSizeInBytes CommittedSizeInBytes CommittedSizeInBytes

Gets the amount of committed memory for the system.

public : ulong CommittedSizeInBytes { get; }public ulong CommittedSizeInBytes { get; }Public ReadOnly Property CommittedSizeInBytes As ulong// You can use this property in JavaScript.
Value
ulong ulong ulong ulong

The amount of committed memory for the system.

TotalPhysicalSizeInBytes TotalPhysicalSizeInBytes TotalPhysicalSizeInBytes TotalPhysicalSizeInBytes

Get the total amount of physical memory for the system.

public : ulong TotalPhysicalSizeInBytes { get; }public ulong TotalPhysicalSizeInBytes { get; }Public ReadOnly Property TotalPhysicalSizeInBytes As ulong// You can use this property in JavaScript.
Value
ulong ulong ulong ulong

The total amount of physical memory for the system.