Class SystemMemoryUsage

    Definition

    Namespace:
    Tizen.System
    Assembly:
    Tizen.System.Information.dll

    The class for memory usage information of the system.

    public class SystemMemoryUsage
    Inheritance
    object
    SystemMemoryUsage

    Constructors

    View Source

    SystemMemoryUsage()

    The constructor of MemoryInformation class. It internally call Update() on constructing an instance.

    Declaration
    public SystemMemoryUsage()

    Properties

    View Source

    Cache

    Cache memory (KiB). To get the latest value, it is recommended to call Update() before it.

    Declaration
    public int Cache { get; }
    Property Value
    Type Description
    int
    View Source

    Free

    Free memory (KiB). To get the latest value, it is recommended to call Update() before it.

    Declaration
    public int Free { get; }
    Property Value
    Type Description
    int
    View Source

    Swap

    Swap memory (KiB). To get the latest value, it is recommended to call Update() before it.

    Declaration
    public int Swap { get; }
    Property Value
    Type Description
    int
    View Source

    Total

    Total memory (KiB). To get the latest value, it is recommended to call Update() before it.

    Declaration
    public int Total { get; }
    Property Value
    Type Description
    int
    View Source

    Used

    Used memory (KiB). To get the latest value, it is recommended to call Update() before it.

    Declaration
    public int Used { get; }
    Property Value
    Type Description
    int

    Methods

    View Source

    Update()

    Update the system memory information to the latest.

    Declaration
    public void Update()
    • View Source
    Back to top Copyright © 2016-2025 Samsung
    Generated by DocFX