IVsBrowseObject.GetProjectItem Method
Maps back to the hierarchy or project item object corresponding to the browse object.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop.8.0 (in Microsoft.VisualStudio.Shell.Interop.8.0.dll)
Syntax
'Declaration
Function GetProjectItem ( _
<OutAttribute> ByRef pHier As IVsHierarchy, _
<OutAttribute> ByRef pItemid As UInteger _
) As Integer
int GetProjectItem(
out IVsHierarchy pHier,
out uint pItemid
)
int GetProjectItem(
[OutAttribute] IVsHierarchy^% pHier,
[OutAttribute] unsigned int% pItemid
)
abstract GetProjectItem :
pHier:IVsHierarchy byref *
pItemid:uint32 byref -> int
function GetProjectItem(
pHier : IVsHierarchy,
pItemid : uint
) : int
Parameters
pHier
Type: Microsoft.VisualStudio.Shell.Interop.IVsHierarchy%[out] Pointer to the hierarchy object.
pItemid
Type: System.UInt32%[out] Pointer to the project item.
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 vsshell80.idl:
HRESULT IVsBrowseObject::GetProjectItem(
[out] IVsHierarchy **pHier, [out] VSITEMID *pItemid
);
.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.