Método IVsSolutionEvents3.OnAfterOpenProject (IVsHierarchy, Int32)

 

Notifica os clientes de escutando que o projeto foi aberto.

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

Sintaxe

int OnAfterOpenProject(
    IVsHierarchy pHierarchy,
    int fAdded
)
int OnAfterOpenProject(
    IVsHierarchy^ pHierarchy,
    int fAdded
)
abstract OnAfterOpenProject : 
        pHierarchy:IVsHierarchy *
        fAdded:int -> int
Function OnAfterOpenProject (
    pHierarchy As IVsHierarchy,
    fAdded As Integer
) As Integer

Parâmetros

  • pHierarchy
    [in] Ponteiro para o IVsHierarchy interface do projeto que está sendo carregado.
  • fAdded
    [in] true se o projeto é adicionado à solução depois que a solução é aberta.falseSe o projeto é adicionado à solução enquanto a solução está sendo aberta.

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.

Implementações

IVsSolutionEvents2.OnAfterOpenProject(IVsHierarchy, Int32)

Comentários

COM assinatura

De vsshell.idl:

HRESULT IVsSolutionEvents3::OnAfterOpenProject(
   [in] IVsHierarchy *pHierarchy,
   [in] BOOL fAdded
);

Consulte também

Interface IVsSolutionEvents3
Namespace Microsoft.VisualStudio.Shell.Interop

Retornar ao topo