次の方法で共有


WebProcessStatistics.ThreadCount プロパティ

定義

プロセス スレッド カウントの総数を取得します。

public:
 property int ThreadCount { int get(); };
public int ThreadCount { get; }
member this.ThreadCount : int
Public ReadOnly Property ThreadCount As Integer

プロパティ値

Int32

プロセス スレッド カウントの総数。

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

public string GetThreadCount()
{
    // Get the thread count.
    return (string.Format(
        "Thread count: {0}",
        processStatistics.ThreadCount.ToString()));
}
Public Function GetThreadCount() As String
    ' Get the thread count.
    Return String.Format( _
    "Thread count: {0}", _
    processStatistics.ThreadCount.ToString())
End Function 'GetThreadCount

注釈

カウントは、マネージド スレッドとアンマネージド スレッドを参照します。

適用対象