Método IVsShell.AdviseShellPropertyChanges (IVsShellPropertyEvents, UInt32)
Publicado: abril de 2016
Permite que os clientes recebam notificações de alterações de propriedade para o ambiente.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop (em Microsoft.VisualStudio.Shell.Interop.dll)
Sintaxe
int AdviseShellPropertyChanges(
IVsShellPropertyEvents pSink,
out uint pdwCookie
)
int AdviseShellPropertyChanges(
IVsShellPropertyEvents^ pSink,
[OutAttribute] unsigned int% pdwCookie
)
abstract AdviseShellPropertyChanges :
pSink:IVsShellPropertyEvents *
pdwCookie:uint32 byref -> int
Function AdviseShellPropertyChanges (
pSink As IVsShellPropertyEvents,
<OutAttribute> ByRef pdwCookie As UInteger
) As Integer
Parâmetros
- pSink
[in] Ponteiro para o IVsShellPropertyEvents interface.
- pdwCookie
[out] Ponteiro para uma alça abstrata para o cliente que será notificado sobre alterações nas propriedades do ambiente
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 IVsShell::AdviseShellPropertyChanges(
[in] IVsShellPropertyEvents *pSink,
[out] VSCOOKIE *pdwCookie
);
Nesse mesmo pdwCookie é passado para a chamada para UnadviseShellPropertyChanges.
Consulte também
Interface IVsShell
Namespace Microsoft.VisualStudio.Shell.Interop
Retornar ao topo