Compartilhar via


Propriedade Debugger.CurrentThread

Define ou obtém o segmento atual que está sendo depurado.

Namespace:  EnvDTE
Assembly:  EnvDTE (em EnvDTE.dll)

Sintaxe

'Declaração
Property CurrentThread As Thread
Thread CurrentThread { get; set; }
property Thread^ CurrentThread {
    Thread^ get ();
    void set (Thread^ value);
}
abstract CurrentThread : Thread with get, set
function get CurrentThread () : Thread 
function set CurrentThread (value : Thread)

Valor de propriedade

Tipo: EnvDTE.Thread
A Thread object.

Comentários

CurrentThreadDefine ou retorna o Thread de objeto que está sendo depurado no momento.

Exemplos

O exemplo a seguir demonstra como usar o CurrentThread propriedade.

Para testar essa propriedade:

  1. Defina um ponto de interrupção no aplicativo de destino. Execute o add-in.

    O thread atual está vazio.

  2. Defina um ponto de interrupção no aplicativo de destino. Execute o aplicativo de destino no modo de depuração. Quando o aplicativo parar no ponto de interrupção, execute o add-in.

    O segmento atual não está vazio.

public static void CurrentThread(DTE dte)
{
    // Setup the debug Output window.
    Window w = (Window)dte.Windows.Item(EnvDTE.Constants.vsWindowKindOutput);
    w.Visible = true;
    OutputWindow ow = (OutputWindow)w.Object;
    OutputWindowPane owp = ow.OutputWindowPanes.Add("Current Thread Test");
    owp.Activate();

    owp.OutputString("Current Thread Info: ");
    EnvDTE.Thread thread = dte.Debugger.CurrentThread;

    if(thread == null)
        owp.OutputString("No program is being debugged");
    else
        foreach(EnvDTE.StackFrame sf in thread.StackFrames)
            owp.OutputString("\nStack Frame: Function " + sf.FunctionName + 
                             " returns type " + sf.ReturnType);
}
Shared Sub CurrentThread(ByRef dte As EnvDTE.DTE)
    Dim str As String
    Dim thread As EnvDTE.Thread = dte.Debugger.CurrentThread
    If thread Is Nothing Then
        MessageBox.Show("No program is being debugged.", _
                        "Debugger Test - Current Thread Info")
    Else
        For Each sf As EnvDTE.StackFrame In thread.StackFrames
            str += vbCrLf + "Stack Frame: Function " + _
                   sf.FunctionName.ToString() + " returns type " + _
                   sf.ReturnType
        Next
        MessageBox.Show(str, "Debugger Test - Current Thread Info")
    End If
End Sub

Segurança do .NET Framework

Consulte também

Referência

Debugger Interface

Namespace EnvDTE