This documentation is archived and is not being maintained.
WebProcessStatistics.ManagedHeapSize Property
.NET Framework (current version)
Gets the size of the managed heap.
Namespace:
System.Web.ManagementAssembly:
System.Web (in System.Web.dll)
Public ReadOnly Property ManagedHeapSize As Long
Property Value
Type:
System.Int64The 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