다음을 통해 공유


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

설명

관리 되는 스레드와 관리 되지 않는 스레드 수를 가리킵니다.

적용 대상