Proprietà Threads.Count

Ottiene un valore che indica il numero di oggetti nell'insieme Threads.

Spazio dei nomi:  EnvDTE
Assembly:  EnvDTE (in EnvDTE.dll)

Sintassi

'Dichiarazione
ReadOnly Property Count As Integer
    Get
int Count { get; }
property int Count {
    int get ();
}
abstract Count : int
function get Count () : int

Valore proprietà

Tipo: System.Int32
Valore integer che indica il numero di oggetti nell'insieme Threads.

Esempi

Nell'esempio riportato di seguito viene illustrato come utilizzare la proprietà Count.

Per verificare la proprietà:

  1. Impostare il punto di interruzione all'interno del metodo di callback dei thread di lavoro.

  2. Eseguire l'applicazione di destinazione in modalità debug.

  3. Quando l'applicazione si interrompe al punto di interruzione, eseguire il componente aggiuntivo.

public static void ThreadsCount(DTE dte)
{
    EnvDTE.Threads threads = dte.Debugger.CurrentProgram.Threads;
    EnvDTE.StackFrames stackFrames = dte.Debugger.CurrentThread.StackFrames;
    MessageBox.Show("\nThere are  " + threads.Count + 
                    " threads running.\n", "Threads Count Property Test" );
}
Shared Sub ThreadsCount(ByRef dte As EnvDTE.DTE)
    Dim threads As EnvDTE.Threads = dte.Debugger.CurrentProgram.Threads
    MessageBox.Show("There are " + threads.Count.ToString() + _
                    " threads running", "Threads Test - Count Property")
End Sub

Sicurezza di .NET Framework

Vedere anche

Riferimenti

Threads Interfaccia

Spazio dei nomi EnvDTE

Altre risorse

Procedura: compilare ed eseguire gli esempi di codice del modello a oggetti di automazione