IVsTrackProjectDocuments2::OnAfterAddDirectories Method (IVsProject^, Int32, array<String^>^)

 

This method is called by a project after directories have been added to the project.

Namespace:   Microsoft.VisualStudio.Shell.Interop
Assembly:  Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)

int OnAfterAddDirectories(
	IVsProject^ pProject,
	int cDirectories,
	array<String^>^ rgpszMkDocuments
)

Parameters

pProject
Type: Microsoft.VisualStudio.Shell.Interop::IVsProject^

[in] Project for which the directories have been added.

cDirectories
Type: System::Int32

[in] Number of directories that were added.

rgpszMkDocuments
Type: array<System::String^>^

[in, size_is(cDirectories)] Array of paths for the directories that were added. This is the same size as cFiles.

Return Value

Type: System::Int32

If the method succeeds, it returns S_OK. If it fails, it returns an error code.

From IVsTrackProjectDocuments2.idl

HRESULT IVsTrackProjectDocuments2::OnAfterAddDirectories(
   [in] IVsProject *pProject,
   [in] int cDirectories,
   [in, size_is(cDirectories)] const LPCOLESTR rgpszMkDocuments[]
);

The project calls this method after it has added directories to notify the environment that the directories have been added.

System_CAPS_noteNote

All directory calls are optional. However, if you call one of the OnQuery* directory methods, then you are required to call the corresponding OnAfter* directory method if the OnQuery* call was successful.

Return to top
Show: