Compartilhar via


Método IVsLiteTree.AdviseTreeEvents (IVsLiteTreeEvents, UInt32)

 

Publicado: abril de 2016

Registra um IVsLiteTreeEvents interface e, portanto, adiciona um ouvinte de eventos à lista de escuta.

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

Sintaxe

int AdviseTreeEvents(
    IVsLiteTreeEvents pEventSink,
    out uint pdwCookie
)
int AdviseTreeEvents(
    IVsLiteTreeEvents^ pEventSink,
    [OutAttribute] unsigned int% pdwCookie
)
abstract AdviseTreeEvents : 
        pEventSink:IVsLiteTreeEvents *
        pdwCookie:uint32 byref -> int
Function AdviseTreeEvents (
    pEventSink As IVsLiteTreeEvents,
    <OutAttribute> ByRef pdwCookie As UInteger
) As Integer

Parâmetros

  • pdwCookie
    [out] Cookie usado para identificar essa instância específica da interface de eventos ao chamar UnadviseTreeEvents.

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

[C++]

De vsshell.idl:

HRESULT IVsLiteTree::AdviseTreeEvents(
   [in] IVsLiteTreeEvents *pEventSink, 
   [out] VSCOOKIE *pdwCookie
);

Consulte também

Interface IVsLiteTree
Namespace Microsoft.VisualStudio.Shell.Interop

Retornar ao topo