Método IVsSolution.GetProjectOfGuid (Guid, IVsHierarchy)
Publicado: abril de 2016
Retorna o projeto na solução, recebe um identificador exclusivo.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop (em Microsoft.VisualStudio.Shell.Interop.dll)
Sintaxe
int GetProjectOfGuid(
[InAttribute] ref Guid rguidProjectID,
out IVsHierarchy ppHierarchy
)
int GetProjectOfGuid(
[InAttribute] Guid% rguidProjectID,
[OutAttribute] IVsHierarchy^% ppHierarchy
)
abstract GetProjectOfGuid :
rguidProjectID:Guid byref *
ppHierarchy:IVsHierarchy byref -> int
Function GetProjectOfGuid (
<InAttribute> ByRef rguidProjectID As Guid,
<OutAttribute> ByRef ppHierarchy As IVsHierarchy
) As Integer
Parâmetros
- rguidProjectID
[in] Identificador exclusivo (GUID) para o projeto.
- ppHierarchy
[out] Ponteiro para o IVsHierarchy interface do projeto chamado pelo identificador.
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 IVsSolution::GetProjectOfGuid(
[in] REFGUID rguidProjectID,
[out] IVsHierarchy **ppHierarchy
);
O projeto é identificado pelo GUID.Esse método retorna o IVsHierarchy interface para o projeto com base no GUID especificado.
Consulte também
Interface IVsSolution
Namespace Microsoft.VisualStudio.Shell.Interop
Retornar ao topo