WebProcessStatistics.ManagedHeapSize Property

 

Gets the size of the managed heap.

Namespace:   System.Web.Management
Assembly:  System.Web (in System.Web.dll)

Public ReadOnly Property ManagedHeapSize As Long

Property Value

Type: System.Int64

The size of the managed heap.

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

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


.NET Framework
Available since 2.0
Return to top
Show: