WebProcessStatistics.ManagedHeapSize 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 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
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.