FlavoredProject.IVsTrackProjectDocumentsEvents2.OnAfterAddDirectoriesEx Method
Raised after directories have been added to a project.
Namespace: Microsoft.VisualStudio.Shell.Flavor
Assembly: Microsoft.VisualStudio.Shell.12.0 (in Microsoft.VisualStudio.Shell.12.0.dll)
Syntax
'Declaration
Private Function OnAfterAddDirectoriesEx ( _
cProjects As Integer, _
cDirectories As Integer, _
rgpProjects As IVsProject(), _
rgFirstIndices As Integer(), _
rgpszMkDocuments As String(), _
rgFlags As VSADDDIRECTORYFLAGS() _
) As Integer Implements IVsTrackProjectDocumentsEvents2.OnAfterAddDirectoriesEx
int IVsTrackProjectDocumentsEvents2.OnAfterAddDirectoriesEx(
int cProjects,
int cDirectories,
IVsProject[] rgpProjects,
int[] rgFirstIndices,
string[] rgpszMkDocuments,
VSADDDIRECTORYFLAGS[] rgFlags
)
private:
virtual int OnAfterAddDirectoriesEx(
int cProjects,
int cDirectories,
array<IVsProject^>^ rgpProjects,
array<int>^ rgFirstIndices,
array<String^>^ rgpszMkDocuments,
array<VSADDDIRECTORYFLAGS>^ rgFlags
) sealed = IVsTrackProjectDocumentsEvents2::OnAfterAddDirectoriesEx
private abstract OnAfterAddDirectoriesEx :
cProjects:int *
cDirectories:int *
rgpProjects:IVsProject[] *
rgFirstIndices:int[] *
rgpszMkDocuments:string[] *
rgFlags:VSADDDIRECTORYFLAGS[] -> int
private override OnAfterAddDirectoriesEx :
cProjects:int *
cDirectories:int *
rgpProjects:IVsProject[] *
rgFirstIndices:int[] *
rgpszMkDocuments:string[] *
rgFlags:VSADDDIRECTORYFLAGS[] -> int
JScript does not support explicit interface implementations.
Parameters
cProjects
Type: Int32The number of projects in the rgpProjects array.
cDirectories
Type: Int32The number of directories to be added.
rgpProjects
Type: array<Microsoft.VisualStudio.Shell.Interop.IVsProject[]An array of IVsProject objects, corresponding to the projects in the solution.
rgFirstIndices
Type: array<Int32[]An array of indices of the directories that were affected.
rgpszMkDocuments
Type: array<String[]An array of paths of the directories that were added.
rgFlags
Type: array<Microsoft.VisualStudio.Shell.Interop.VSADDDIRECTORYFLAGS[]An array of VSADDDIRECTORYFLAGS. May be nulla null reference (Nothing in Visual Basic).
Return Value
Type: Int32
S_OK.
Implements
Remarks
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.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.