GCLargeObjectHeapCompactionMode Enum
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.
Indicates whether the next blocking garbage collection compacts the large object heap (LOH).
public enum class GCLargeObjectHeapCompactionMode
public enum GCLargeObjectHeapCompactionMode
[System.Serializable]
public enum GCLargeObjectHeapCompactionMode
type GCLargeObjectHeapCompactionMode =
[<System.Serializable>]
type GCLargeObjectHeapCompactionMode =
Public Enum GCLargeObjectHeapCompactionMode
- Inheritance
- Attributes
Fields
Name | Value | Description |
---|---|---|
Default | 1 | The large object heap (LOH) is not compacted. |
CompactOnce | 2 | The large object heap (LOH) will be compacted during the next blocking generation 2 garbage collection. |
Remarks
The value of the GCSettings.LargeObjectHeapCompactionMode property is a member of the GCLargeObjectHeapCompactionMode enumeration that indicates whether the next full blocking garbage collection also compacts the large object heap (LOH). By default, the LOH is not compacted. A value of CompactOnce indicates that the blocking garbage collection will compact the LOH. After the garbage collection, the value of the GCSettings.LargeObjectHeapCompactionMode property reverts to Default.