This commit is contained in:
Jozef Izso 2014-11-01 01:31:23 +01:00
Родитель 16658d74a6
Коммит 597aa25b46
1 изменённых файлов: 11 добавлений и 0 удалений

Просмотреть файл

@ -330,5 +330,16 @@ namespace SystemInterface
/// each version of the .NET Framework, see .NET Framework Versions and Dependencies. /// each version of the .NET Framework, see .NET Framework Versions and Dependencies.
/// </remarks> /// </remarks>
IVersion Version { get; } IVersion Version { get; }
/// <summary>
/// Gets the amount of physical memory mapped to the process context.
/// </summary>
/// <value>
/// A 64-bit signed integer containing the number of bytes of physical memory mapped to the process context.
/// </value>
/// <permission cref="EnvironmentPermission">
/// For full access to the resource protected by this permission. Associated enumeration: <see cref="PermissionState.Unrestricted"/>.
/// </permission>
long WorkingSet { get; }
} }
} }