Método IVsMonitorSelection.AdviseSelectionEvents (IVsSelectionEvents, UInt32)

 

Registra um VSPackage para notificação de evento de seleção.

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

Sintaxe

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

Parâmetros

  • pSink
    [in] Ponteiro para o IVsSelectionEvents interface de registro de VSPackage para notificação de evento de seleção.
  • pdwCookie
    [out] Ponteiro para uma alça abstrata que representa o registro completo.

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 IVsMonitorSelection::AdviseSelectionEvents(
   [in]  IVsSelectionEvents *psink,
   [out] VSCOOKIE           *pdwCookie
);

Consulte também

Interface IVsMonitorSelection
Namespace Microsoft.VisualStudio.Shell.Interop

Retornar ao topo