Método IVsSolution2.GetProjectTypeGuid (UInt32, String, Guid)
Publicado: abril de 2016
Retorna o tipo de projeto, dado um GUID.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop (em Microsoft.VisualStudio.Shell.Interop.dll)
Sintaxe
int GetProjectTypeGuid(
uint dwReserved,
string pszMkProject,
out Guid pguidProjectType
)
int GetProjectTypeGuid(
unsigned int dwReserved,
String^ pszMkProject,
[OutAttribute] Guid% pguidProjectType
)
abstract GetProjectTypeGuid :
dwReserved:uint32 *
pszMkProject:string *
pguidProjectType:Guid byref -> int
Function GetProjectTypeGuid (
dwReserved As UInteger,
pszMkProject As String,
<OutAttribute> ByRef pguidProjectType As Guid
) As Integer
Parâmetros
- dwReserved
[in] Reservado para uso futuro.
- pszMkProject
[in] Ponteiro para o caminho do projeto.
- pguidProjectType
[out, retval] Ponteiro para o tipo de projeto.
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
IVsSolution.GetProjectTypeGuid(UInt32, String, Guid)
Comentários
COM assinatura
De vsshell.idl:
HRESULT IVsSolution2::GetProjectTypeGuid(
[in] DWORD dwReserved,
[in] LPCOLESTR pszMkProject,
[out, retval] GUID *pguidProjectType
);
Consulte também
Interface IVsSolution2
Namespace Microsoft.VisualStudio.Shell.Interop
Retornar ao topo