Compartir a través de


WebProcessStatistics.ThreadCount Propiedad

Definición

Obtiene el recuento total de los subprocesos del proceso.

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

Valor de propiedad

Int32

Recuento total de los subprocesos del proceso.

Ejemplos

En el ejemplo de código siguiente se muestra cómo obtener el ThreadCount valor.

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

Comentarios

El recuento hace referencia a los subprocesos administrados y no administrados.

Se aplica a