Udostępnij za pośrednictwem


Zdarzenie DebuggerEventsClass.OnContextChanged

Ten interfejs API obsługuje infrastrukturę programu .NET Framework i nie jest przeznaczony do użycia bezpośrednio w kodzie.

Wywoływane w każdym przypadku, gdy bieżący proces, program, wątek lub stosu została zmieniona, za pośrednictwem interfejsu użytkownika lub automatyzacji modelu.

Przestrzeń nazw:  EnvDTE
Zestaw:  EnvDTE (w EnvDTE.dll)

Składnia

'Deklaracja
Public Overridable Event OnContextChanged As _dispDebuggerEvents_OnContextChangedEventHandler
public virtual event _dispDebuggerEvents_OnContextChangedEventHandler OnContextChanged
public:
virtual   event _dispDebuggerEvents_OnContextChangedEventHandler^ OnContextChanged {
    void add (_dispDebuggerEvents_OnContextChangedEventHandler^ value);
    void remove (_dispDebuggerEvents_OnContextChangedEventHandler^ value);
}
abstract OnContextChanged : IEvent<_dispDebuggerEvents_OnContextChangedEventHandler,
    EventArgs>
override OnContextChanged : IEvent<_dispDebuggerEvents_OnContextChangedEventHandler,
    EventArgs>
Język JScript nie obsługuje zdarzeń.

Implementuje

_dispDebuggerEvents_Event.OnContextChanged

Przykłady

Poniższy przykład demonstruje, jak używać OnContextChanged zdarzenia.

Aby przetestować tego zdarzenia:

  1. Otwórz aplikację docelową.

  2. Uruchomienie dodatku.

    Obserwować okno komunikatu: "Zdarzenia są dołączone."

  3. Ustaw punkt przerwania, a następnie uruchom aplikację docelową w trybie debugowania.

  4. Gdy aplikacja przestanie działać na punkt przerwania, należy zatrzymać debugera.

    Obserwować okno komunikatu: "Debuger wchodzi w tryb zmianie kontekstu."

// Place the following code in the Exec method of the add-in:
EnvDTE.DebuggerEvents debugEvents = applicationObject.Events.DebuggerEvents;
debugEvents.OnContextChanged += 
new _dispDebuggerEvents_OnContextChangedEventHandler(DebuggerEvents.ContextHandler);

// Place the following Event handler code in the add-in:
// Needed to activate event handlers in Connect.Exec.
public static void StartEvents(DTE dte)
{
    System.Windows.Forms.MessageBox.Show("Events are attached.");
}

public static void ContextHandler(EnvDTE.Process newProc, 
    EnvDTE.Program newProg, EnvDTE.Thread newThread, EnvDTE.StackFrame newStkFrame)
{
    System.Windows.Forms.MessageBox.Show("Debugger enters context changed mode.");
}

Zabezpieczenia programu .NET Framework

Zobacz też

Informacje

DebuggerEventsClass Klasa

Przestrzeń nazw EnvDTE