IVsTrackProjectDocumentsEvents2.OnQueryAddFiles 方法

,该项目请求添加文件时,此方法通知客户端。

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

语法

声明
Function OnQueryAddFiles ( _
    pProject As IVsProject, _
    cFiles As Integer, _
    rgpszMkDocuments As String(), _
    rgFlags As VSQUERYADDFILEFLAGS(), _
    <OutAttribute> pSummaryResult As VSQUERYADDFILERESULTS(), _
    <OutAttribute> rgResults As VSQUERYADDFILERESULTS() _
) As Integer
int OnQueryAddFiles(
    IVsProject pProject,
    int cFiles,
    string[] rgpszMkDocuments,
    VSQUERYADDFILEFLAGS[] rgFlags,
    VSQUERYADDFILERESULTS[] pSummaryResult,
    VSQUERYADDFILERESULTS[] rgResults
)

参数

  • cFiles
    类型:System.Int32
    [in] 添加的文件的数字。
  • rgpszMkDocuments
    类型:array<System.String[]
    [in] 添加一些文件添加到项目。

返回值

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

备注

COM 签名

从 IVsTrackProjectDocumentsEvents2.idl

HRESULT IVsTrackProjectDocumentsEvents2::OnQueryAddFiles(
   [in] IVsProject *pProject,
   [in] int cFiles,
   [in, size_is(cFiles)] const LPCOLESTR rgpszMkDocuments[],
   [in, size_is(cFiles)] const VSQUERYADDFILEFLAGS rgFlags[],
   [out] VSQUERYADDFILERESULTS *pSummaryResult,
   [out, size_is(cFiles)] VSQUERYADDFILERESULTS rgResults[]
);

使用 IVsTrackProjectDocumentEvents2.OnQueryAddFiles 指示所指定的文件是否可添加到项目中。 ,如果允许操作会危及稳定状态,只拒绝查询。 例如,源代码管理拒绝添加查询,如果文件是与现有文件添加了冲突已在源代码管理。

.NET Framework 安全性

请参见

参考

IVsTrackProjectDocumentsEvents2 接口

Microsoft.VisualStudio.Shell.Interop 命名空间