IVsTrackProjectDocumentsEvents2.OnAfterRenameDirectories 方法
,其内容在项目中,已重命名此方法通知客户端。
命名空间: Microsoft.VisualStudio.Shell.Interop
程序集: Microsoft.VisualStudio.Shell.Interop(在 Microsoft.VisualStudio.Shell.Interop.dll 中)
语法
声明
Function OnAfterRenameDirectories ( _
cProjects As Integer, _
cDirs As Integer, _
rgpProjects As IVsProject(), _
rgFirstIndices As Integer(), _
rgszMkOldNames As String(), _
rgszMkNewNames As String(), _
rgFlags As VSRENAMEDIRECTORYFLAGS() _
) As Integer
int OnAfterRenameDirectories(
int cProjects,
int cDirs,
IVsProject[] rgpProjects,
int[] rgFirstIndices,
string[] rgszMkOldNames,
string[] rgszMkNewNames,
VSRENAMEDIRECTORYFLAGS[] rgFlags
)
参数
- cProjects
类型:System.Int32
[in] 项数目与重命名的目录。
- cDirs
类型:System.Int32
[in] 重命名的内容的数字。
- rgpProjects
类型:array<Microsoft.VisualStudio.Shell.Interop.IVsProject[]
[in] 目录重命名的项。
- rgFirstIndices
类型:array<System.Int32[]
[in] 项目每个内容的第一个索引标识属于。有关更多信息,请参见 IVsTrackProjectDocumentsEvents2。
- rgszMkOldNames
类型:array<System.String[]
[in] 某些内容的旧名称的路径。
- rgszMkNewNames
类型:array<System.String[]
[in] 某些内容的新名称的路径。
- rgFlags
类型:array<Microsoft.VisualStudio.Shell.Interop.VSRENAMEDIRECTORYFLAGS[]
[in] 一些标志。有关 rgFlags 值列表,请参见 VSRENAMEDIRECTORYFLAGS。
返回值
类型:System.Int32
如果方法成功,则返回 S_OK。如果失败,它会返回一个错误代码。
备注
COM 签名
从 IVsTrackProjectDocumentsEvents2.idl
HRESULT IVsTrackProjectDocumentsEvents2::OnAfterRenameDirectories(
[in] int cProjects,
[in] int cDirs,
[in, size_is(cProjects)] IVsProject *rgpProjects[],
[in, size_is(cProjects)] const int rgFirstIndices[],
[in, size_is(cDirs)] const LPCOLESTR rgszMkOldNames[],
[in, size_is(cDirs)] const LPCOLESTR rgszMkNewNames[],
[in, size_is(cDirs)] const VSRENAMEDIRECTORYFLAGS rgflags[]
);
.NET Framework 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。