This documentation is archived and is not being maintained.

AppDomain.MonitoringSurvivedProcessMemorySize Property

Gets the total bytes that survived from the last full, blocking collection for all application domains in the process.

Namespace:  System
Assembly:  mscorlib (in mscorlib.dll)

public static long MonitoringSurvivedProcessMemorySize { get; }

Property Value

Type: System.Int64
The total number of surviving bytes for the process.

ExceptionCondition
InvalidOperationException

The static (Shared in Visual Basic) MonitoringIsEnabled property is set to false.

After a full, blocking collection, this number represents the number of bytes currently held on the managed heap. It should be close to the number reported by the GetTotalMemory method.

Statistics are updated only after a full, blocking collection; that is, a collection that includes all generations and that stops the application while collection occurs. For example, the GC.Collect() method overload performs a full, blocking collection. (Concurrent collection occurs in the background and does not block the application.)

.NET Framework

Supported in: 4

.NET Framework Client Profile

Supported in: 4

  • SecurityCriticalAttribute 

    Requires full trust for the immediate caller. This member cannot be used by partially trusted or transparent code.

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show: