WebProcessStatistics.ManagedHeapSize Proprietà

Definizione

Ottiene la dimensione dell'heap gestito.

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

Valore della proprietà

Dimensione dell'heap gestito.

Esempio

Nell'esempio di codice seguente viene illustrato come ottenere il ManagedHeapSize valore.

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

Si applica a