Compartilhar via


Método IVsDebugger.UnadviseDebugEventCallback (Object)

 

Usado por um cliente para interromper o recebimento de notificações de eventos do depurador.Em geral, use AdviseDebuggerEvents e UnadviseDebuggerEvents em vez disso.

Namespace:   Microsoft.VisualStudio.Shell.Interop
Assembly:  Microsoft.VisualStudio.Shell.Interop (em Microsoft.VisualStudio.Shell.Interop.dll)

Sintaxe

int UnadviseDebugEventCallback(
    object punkDebuggerEvents
)
int UnadviseDebugEventCallback(
    Object^ punkDebuggerEvents
)
abstract UnadviseDebugEventCallback : 
        punkDebuggerEvents:Object -> int
Function UnadviseDebugEventCallback (
    punkDebuggerEvents As Object
) As Integer

Parâmetros

  • punkDebuggerEvents
    [in] Ponteiro para o IUnknown interface de um objeto que implementa também IVsDebuggerEvents.

Valor de retorno

Type: System.Int32

Se o método for bem-sucedido, ele retorna S_OK.Se ele falhar, ele retorna um código de erro.

Comentários

COM assinatura

De vsshell.idl:

HRESULT IVsDebugger::UnadviseDebugEventCallback(
   [in]IUnknown *punkDebuggerEvents
);

Consulte também

Interface IVsDebugger
Namespace Microsoft.VisualStudio.Shell.Interop

Retornar ao topo