次の方法で共有


WebProcessStatistics.ManagedHeapSize プロパティ

定義

マネージド ヒープのサイズを取得します。

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

プロパティ値

マネージド ヒープのサイズ。

次のコード例は、値を取得する方法を ManagedHeapSize 示しています。

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

適用対象