IVsTrackProjectDocuments4.OnQueryRemoveDirectoriesEx Method (IVsProject, Int32, String[], UInt32[], VSQUERYREMOVEDIRECTORYRESULTS[], VSQUERYREMOVEDIRECTORYRESULTS[])
Called by a project to determine whether directories can be removed from the project.
Assembly: Microsoft.VisualStudio.Shell.Interop.11.0 (in Microsoft.VisualStudio.Shell.Interop.11.0.dll)
int OnQueryRemoveDirectoriesEx( IVsProject pProject, int cDirectories, string[] rgpszMkDocuments, uint[] rgFlags, VSQUERYREMOVEDIRECTORYRESULTS[] pSummaryResult, VSQUERYREMOVEDIRECTORYRESULTS[] rgResults )
Parameters
- pProject
-
Type:
Microsoft.VisualStudio.Shell.Interop.IVsProject
[in] Project containing the directories to remove.
- cDirectories
-
Type:
System.Int32
[in] Number of directories to remove.
- rgpszMkDocuments
-
Type:
System.String[]
[in, size_is(cDirectories)] Array of paths for the directories to remove.
- rgFlags
-
Type:
System.UInt32[]
[in, size_is(cDirectories)] Array of directory removal flags. For a list of rgFlags values, see __VSQUERYREMOVEDIRECTORYFLAGS2.
- pSummaryResult
-
Type:
Microsoft.VisualStudio.Shell.Interop.VSQUERYREMOVEDIRECTORYRESULTS[]
[out] Summary result object. This object is a summation of the yes and no results for the array of directories passed in rgpszMkDocuments. If the result for a single directory is no, then this parameter is equal to VSQUERYREMOVEDIRECTORYRESULTS_RemoveNotOK; if the results for all files are yes, then this parameter is equal to VSQUERYREMOVEDIRECTORYRESULTS_RemoveOK. For a list of pSummaryResult values, see VSQUERYREMOVEDIRECTORYRESULTS.
- rgResults
-
Type:
Microsoft.VisualStudio.Shell.Interop.VSQUERYREMOVEDIRECTORYRESULTS[]
[out, size_is(cDirectories)] Array of results. If you pass in a null reference for this parameter, then only the summary result is returned (pSummaryResult). For a list of rgResults values, see VSQUERYREMOVEDIRECTORYRESULTS.
Return Value
Type: System.Int32If the method succeeds, it returns S_OK. If it fails, it returns an error code.