IVsTrackProjectDocuments2.OnAfterRemoveDirectories Method (IVsProject, Int32, String[], VSREMOVEDIRECTORYFLAGS[])

 

This method is called by a project after directories have been removed from the project.

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

int OnAfterRemoveDirectories(
	IVsProject pProject,
	int cDirectories,
	string[] rgpszMkDocuments,
	VSREMOVEDIRECTORYFLAGS[] rgFlags
)

Parameters

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

[in] Project from which the directories have been removed.

cDirectories
Type: System.Int32

[in] Number of directories that were removed.

rgpszMkDocuments
Type: System.String[]

[in, size_is(cDirectories)] Array of paths for the directories that were removed.

rgFlags
Type: Microsoft.VisualStudio.Shell.Interop.VSREMOVEDIRECTORYFLAGS[]

[in, size_is(cDirectories)] Array of flags. For a list of rgFlags values, see VSREMOVEDIRECTORYFLAGS.

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::OnAfterRemoveDirectories(
   [in] IVsProject *pProject,
   [in] int cDirectories,
   [in, size_is(cDirectories)] const LPCOLESTR rgpszMkDocuments[],
   [in, size_is(cDirectories)] const VSREMOVEDIRECTORYFLAGS rgFlags[]
);

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

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: