WebProcessStatistics.ManagedHeapSize Property

Definition

Gets the size of the managed heap.

public:
 property long ManagedHeapSize { long get(); };
public long ManagedHeapSize { get; }
member this.ManagedHeapSize : int64
Public ReadOnly Property ManagedHeapSize As Long

Property Value

The size of the managed heap.

Examples

The following code example shows how to get the ManagedHeapSize value.

public string GetManagedHeapSize()
{
    // Get the mamaged heap size.
    return (string.Format(
        "Managed heap size: {0}",
        processStatistics.ManagedHeapSize.ToString()));
}
Public Function GetManagedHeapSize() As String
    ' Get the mamaged heap size.
    Return String.Format( _
    "Managed heap size: {0}", _
    processStatistics.ManagedHeapSize.ToString())
End Function 'GetManagedHeapSize

Applies to