GCMemoryInfo.TotalAvailableMemoryBytes Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the total available memory for the garbage collector to use when the last garbage collection occurred.
public:
property long TotalAvailableMemoryBytes { long get(); };
public long TotalAvailableMemoryBytes { get; }
member this.TotalAvailableMemoryBytes : int64
Public ReadOnly Property TotalAvailableMemoryBytes As Long
Property Value
The total available memory, in bytes, for the garbage collector to use when the last garbage collection occurred.
Remarks
This property value will be the value of the COMPlus_GCHeapHardLimit
environment variable, or the Server.GC.HeapHardLimit
value in runtimeconfig.json
, if either is set.
If the program is run in a container, this value is an implementation-defined fraction of the container's size.
Otherwise, the value of the property is the physical memory on the machine that was available for the garbage collector to use when the last garbage collection occurred.