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 project in the solution, given a unique identifier.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)
Syntax
'Declaration
Function GetProjectOfGuid ( _
ByRef rguidProjectID As Guid, _
<OutAttribute> ByRef ppHierarchy As IVsHierarchy _
) As Integer
'Usage
Dim instance As IVsSolution2
Dim rguidProjectID As Guid
Dim ppHierarchy As IVsHierarchy
Dim returnValue As Integer
returnValue = instance.GetProjectOfGuid(rguidProjectID, _
ppHierarchy)
int GetProjectOfGuid(
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(
rguidProjectID : Guid,
ppHierarchy : IVsHierarchy
) : int
Parameters
- rguidProjectID
Type: System.Guid%
[in] Unique identifier (GUID) for the project.
- ppHierarchy
Type: Microsoft.VisualStudio.Shell.Interop.IVsHierarchy%
[out] Pointer to the IVsHierarchy interface of the project referred to by the identifier.
Return Value
Type: System.Int32
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Implements
IVsSolution.GetProjectOfGuid(Guid%, IVsHierarchy%)
Remarks
COM Signature
From vsshell.idl:
HRESULT IVsSolution2::GetProjectOfGuid(
[in] REFGUID rguidProjectID,
[out] IVsHierarchy **ppHierarchy
);
The project is identified by the GUID. This method returns the IVsHierarchy interface for the project based on the specified GUID.
.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.