WebProcessStatistics.ManagedHeapSize Eigenschap

Definitie

Hiermee wordt de grootte van de beheerde heap.

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

Waarde van eigenschap

De grootte van de beheerde heap.

Voorbeelden

In het volgende codevoorbeeld ziet u hoe u de ManagedHeapSize waarde kunt ophalen.

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

Van toepassing op