Propriedade Debugger3.CurrentStackFrame

Obtém ou define o quadro de pilha atual.

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

Sintaxe

'Declaração
Property CurrentStackFrame As StackFrame
    Get
    Set
StackFrame CurrentStackFrame { get; set; }
property StackFrame^ CurrentStackFrame {
    StackFrame^ get ();
    void set (StackFrame^ value);
}
abstract CurrentStackFrame : StackFrame with get, set
function get CurrentStackFrame () : StackFrame
function set CurrentStackFrame (value : StackFrame)

Valor de propriedade

Tipo: EnvDTE.StackFrame
A StackFrame objeto.

Implementações

Debugger2.CurrentStackFrame

Comentários

Para obter mais informações sobre o quadro de pilha, consulte Memory Management: Frame Allocation.

Exemplos

O exemplo a seguir mostra como usar o CurrentStackFrame propriedade.

Para testar essa propriedade:

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

    O quadro de pilha 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 programa pára no ponto de interrupção, execute o add-in.

    O quadro de pilha atual contém o nome do método e o tipo de retorno.

public static void CurrentStackFrame(EnvDTE80.DTE2 dte)
{
    // Setup 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 StackFrame 
    Test");
    owp.Activate();

    owp.OutputString("Current Stack Frame Info: ");
    EnvDTE90.Debugger3 debugger = (EnvDTE90.Debugger3)dte.Debugger;
    EnvDTE.StackFrame sf = debugger.CurrentStackFrame;
    if (sf == null)
        owp.OutputString("No program is being debugged, Stack Frame is 
        empty.");
    else
        owp.OutputString("Function " + sf.FunctionName +
                         " returns type " + sf.ReturnType);
}
Sub ShowCurrentProcess()
    ' This function displays the current debugger
    ' mode in the output window.
    Dim ow As OutputWindow
    ow = DTE2.Windows.Item(Constants.vsWindowKindOutput).Object

    Dim proc As EnvDTE.Process2
    proc = DTE2.Debugger.CurrentProcess

    If (proc Is Nothing) Then
        ow.ActivePane.OutputString("No process is being debugged")
    Else
        ow.ActivePane.OutputString("" + Str(proc.ProcessID) + ": " + _
        proc.Name + vbCrLf)
    End If
End Sub

Segurança do .NET Framework

Consulte também

Referência

Debugger3 Interface

Sobrecargas CurrentStackFrame

Namespace EnvDTE90