IVsSolution2.GetProjrefOfItem 方法 (IVsHierarchy, UInt32, String%)

返回项目引用了指定的层次结构的字符串,并层次结构项对。

命名空间:  Microsoft.VisualStudio.Shell.Interop
程序集:  Microsoft.VisualStudio.Shell.Interop(在 Microsoft.VisualStudio.Shell.Interop.dll 中)

语法

声明
Function GetProjrefOfItem ( _
    pHierarchy As IVsHierarchy, _
    itemid As UInteger, _
    <OutAttribute> ByRef pbstrProjref As String _
) As Integer
int GetProjrefOfItem(
    IVsHierarchy pHierarchy,
    uint itemid,
    out string pbstrProjref
)

参数

  • itemid
    类型:System.UInt32
    [in] 在项目中有效的项 ID;不是 VSITEMID 值。
  • pbstrProjref
    类型:System.String%
    [out] 对项目的指针引用字符串。

返回值

类型:System.Int32
如果方法成功,则返回 S_OK。如果失败,它会返回一个错误代码。

备注

COM 签名

从 vsshell.idl:

HRESULT IVsSolution2::GetProjrefOfItem(
   [in] IVsHierarchy *pHierarchy, 
   [in] VSITEMID itemid, 
   [out] BSTR *pbstrProjref
);

下面是声明 GetProjrefOfItem 方法如何使用这些项目支持拖放操作:

CF_VSPROJECTITEMS 和 CF_VSPROJECTS 剪贴板格式使用 DROPFILES 结构与 CF_HDROP 或 CF_PRINTERS 相同。 下面是双 null 终止的 DROPFILES 结构的数据列表 Projref 字符串。 放置操作的使用者可以使用 windows API DragQueryFile 检查在 DROPFILES 结构的数据。 提供 CF_VSPROJECTS 布局,同时,即时, Projref 字符串标识整体项目 *pitemid == VSITEMID_ROOT。 CF_VSPROJECTITEMS 布局,同时 Projref 字符串标识一个或多个单个项目项时,提供。 应提供 CF_VSPROJECTS 或 CF_VSPROJECTITEMS,,但从未两个。

.NET Framework 安全性

请参见

参考

IVsSolution2 接口

GetProjrefOfItem 重载

Microsoft.VisualStudio.Shell.Interop 命名空间