Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
Returns the unique identifier for a project in the solution.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)
Syntax
'Declaration
Function GetGuidOfProject ( _
pHierarchy As IVsHierarchy, _
<OutAttribute> ByRef pguidProjectID As Guid _
) As Integer
'Usage
Dim instance As IVsSolution
Dim pHierarchy As IVsHierarchy
Dim pguidProjectID As Guid
Dim returnValue As Integer
returnValue = instance.GetGuidOfProject(pHierarchy, _
pguidProjectID)
int GetGuidOfProject(
IVsHierarchy pHierarchy,
out Guid pguidProjectID
)
int GetGuidOfProject(
[InAttribute] IVsHierarchy^ pHierarchy,
[OutAttribute] Guid% pguidProjectID
)
abstract GetGuidOfProject :
pHierarchy:IVsHierarchy *
pguidProjectID:Guid byref -> int
function GetGuidOfProject(
pHierarchy : IVsHierarchy,
pguidProjectID : Guid
) : int
Parameters
- pHierarchy
Type: Microsoft.VisualStudio.Shell.Interop.IVsHierarchy
[in] Pointer to the IVsHierarchy interface of the project for which the identifier is requested.
- pguidProjectID
Type: System.Guid%
[out] Pointer to the unique identifier of the project.
Return Value
Type: System.Int32
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Remarks
COM Signature
From vsshell.idl:
HRESULT IVsSolution::GetGuidOfProject(
[in] IVsHierarchy *pHierarchy,
[out] GUID *pguidProjectID
);
Based on a project, this method returns the GUID for a project in a solution.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.