FlavoredProject::IVsTrackProjectDocumentsEvents2::OnAfterRenameDirectories Method (Int32, Int32, array<IVsProject^>^, array<Int32>^, array<String^>^, array<String^>^, array<VSRENAMEDIRECTORYFLAGS>^)
Visual Studio 2015
Raised after a directory has been moved or renamed.
Assembly: Microsoft.VisualStudio.Shell.14.0 (in Microsoft.VisualStudio.Shell.14.0.dll)
private: virtual int OnAfterRenameDirectories( int cProjects, int cDirs, array<IVsProject^>^ rgpProjects, array<int>^ rgFirstIndices, array<String^>^ rgszMkOldNames, array<String^>^ rgszMkNewNames, array<VSRENAMEDIRECTORYFLAGS>^ rgFlags ) sealed = IVsTrackProjectDocumentsEvents2::OnAfterRenameDirectories
Parameters
- cProjects
-
Type:
System::Int32
The number of projects in the rgpProjects array.
- cDirs
-
Type:
System::Int32
The number of directories affected.
- rgpProjects
-
Type:
array<Microsoft.VisualStudio.Shell.Interop::IVsProject^>^
An array of IVsProject objects, corresponding to the projects in the solution.
- rgFirstIndices
-
Type:
array<System::Int32>^
An array of indices of the directories affected.
- rgszMkOldNames
-
Type:
array<System::String^>^
An array of the old paths of the directories.
- rgszMkNewNames
-
Type:
array<System::String^>^
An array of the new paths of the directories.
- rgFlags
-
Type:
array<Microsoft.VisualStudio.Shell.Interop::VSRENAMEDIRECTORYFLAGS>^
An array of VSRENAMEDIRECTORYFLAGS. May be null.
Events are filtered so that they report only those related to this project. This is not required for flavoring, but it simplifies the work the derived classes have to do when subscribing to these events.
Show: