2017-10-14 00:06:58 +02:00
|
|
|
|
namespace ElectronNET.API.Entities
|
|
|
|
|
|
{
|
2017-10-24 21:43:27 +02:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
///
|
|
|
|
|
|
/// </summary>
|
2017-10-14 00:06:58 +02:00
|
|
|
|
public class MemoryInfo
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
2020-05-31 03:09:54 +02:00
|
|
|
|
/// The amount of memory currently pinned to actual physical RAM.
|
2017-10-14 00:06:58 +02:00
|
|
|
|
/// </summary>
|
2020-05-31 03:09:54 +02:00
|
|
|
|
public int WorkingSetSize { get; set; }
|
2017-10-14 00:06:58 +02:00
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
2020-05-31 03:09:54 +02:00
|
|
|
|
/// The maximum amount of memory that has ever been pinned to actual physical RAM.
|
2017-10-14 00:06:58 +02:00
|
|
|
|
/// </summary>
|
2020-05-31 03:09:54 +02:00
|
|
|
|
public int PeakWorkingSetSize { get; set; }
|
2017-10-14 00:06:58 +02:00
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// The amount of memory not shared by other processes, such as JS heap or HTML
|
|
|
|
|
|
/// content.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public int PrivateBytes { get; set; }
|
|
|
|
|
|
}
|
2020-05-31 03:09:54 +02:00
|
|
|
|
}
|