IVsSolution2.GetItemOfProjref 方法 (String, IVsHierarchy%, UInt32%, String%, array<VSUPDATEPROJREFREASON )

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

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

语法

声明
Function GetItemOfProjref ( _
    pszProjref As String, _
    <OutAttribute> ByRef ppHierarchy As IVsHierarchy, _
    <OutAttribute> ByRef pitemid As UInteger, _
    <OutAttribute> ByRef pbstrUpdatedProjref As String, _
    <OutAttribute> puprUpdateReason As VSUPDATEPROJREFREASON() _
) As Integer
int GetItemOfProjref(
    string pszProjref,
    out IVsHierarchy ppHierarchy,
    out uint pitemid,
    out string pbstrUpdatedProjref,
    VSUPDATEPROJREFREASON[] puprUpdateReason
)

参数

  • pszProjref
    类型:System.String
    [in] 对现有项目项的指针引用字符串,如果适用)。可以为 nullnull 引用(在 Visual Basic 中为 Nothing)。
  • pitemid
    类型:System.UInt32%
    [out] 对项 ID 的指针由项目引用的引用。有关枚举 pitemid 值列表,请参见 VSITEMID。
  • pbstrUpdatedProjref
    类型:System.String%
    [out] 为更新项目的指针引用字符串。

返回值

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

备注

COM 签名

从 vsshell.idl:

HRESULT IVsSolution2::GetItemOfProjref(
   [in] LPCOLESTR pszProjref, 
   [out] IVsHierarchy **ppHierarchy, 
   [out] VSITEMID *pitemid, 
   [out] BSTR *pbstrUpdatedProjref, 
   [out] VSUPDATEPROJREFREASON *puprUpdateReason
);

在拖放或剪切和粘贴操作时,环境在源项剪贴板将设置项目引用在操作。该目标使用此方法在这些操作将项目从剪贴板引用回层次结构,并层次结构项对。目标可以通知该源它将这些项目。

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

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

.NET Framework 安全性

请参见

参考

IVsSolution2 接口

GetItemOfProjref 重载

Microsoft.VisualStudio.Shell.Interop 命名空间