IVsTrackProjectDocumentsEvents3::OnQueryAddFilesEx Method (IVsProject^, Int32, array<String^>^, array<String^>^, array<VSQUERYADDFILEFLAGS>^, array<VSQUERYADDFILERESULTS>^, array<VSQUERYADDFILERESULTS>^)
Determines if it is okay to add a collection of files (possibly from source control) whose final destination may be different from a source location.
Assembly: Microsoft.VisualStudio.Shell.Interop.8.0 (in Microsoft.VisualStudio.Shell.Interop.8.0.dll)
int OnQueryAddFilesEx( IVsProject^ pProject, int cFiles, array<String^>^ rgpszNewMkDocuments, array<String^>^ rgpszSrcMkDocuments, array<VSQUERYADDFILEFLAGS>^ rgFlags, array<VSQUERYADDFILERESULTS>^ pSummaryResult, array<VSQUERYADDFILERESULTS>^ rgResults )
Parameters
- pProject
-
Type:
Microsoft.VisualStudio.Shell.Interop::IVsProject^
[in] Project making the request about adding files.
- cFiles
-
Type:
System::Int32
[in] The number of files represented in the rgpszNewMkDocuments, rgpszSrcMkDocuments, rgFlags, and rgResults arrays.
- rgpszNewMkDocuments
-
Type:
array<System::String^>^
[in] An array of file names that indicate the files' final destination.
- rgpszSrcMkDocuments
-
Type:
array<System::String^>^
[in] An array of file names specifying the source location of the files.
- rgFlags
-
Type:
array<Microsoft.VisualStudio.Shell.Interop::VSQUERYADDFILEFLAGS>^
[in] An array of values, one element for each file, from the VSQUERYADDFILEFLAGS enumeration.
- pSummaryResult
-
Type:
array<Microsoft.VisualStudio.Shell.Interop::VSQUERYADDFILERESULTS>^
[out] Returns an overall status for all files as a value from the VSQUERYADDFILERESULTS enumeration.
- rgResults
-
Type:
array<Microsoft.VisualStudio.Shell.Interop::VSQUERYADDFILERESULTS>^
[out] An array that is to be filled in with the status of each file. Each status is a value from the VSQUERYADDFILERESULTS enumeration.
Return Value
Type: System::Int32If the method succeeds, it returns S_OK. If it fails, it returns an error code.
From ivstrackprojectdocumentsevents80.idl
HRESULT OnQueryAddFilesEx( [in] IVsProject *pProject, [in] int cFiles, [in, size_is(cFiles)] const LPCOLESTR rgpszNewMkDocuments[], [in, size_is(cFiles)] const LPCOLESTR rgpszSrcMkDocuments[], [in, size_is(cFiles)] const VSQUERYADDFILEFLAGS rgFlags[], [out] VSQUERYADDFILERESULTS *pSummaryResult, [out, size_is(cFiles)] VSQUERYADDFILERESULTS rgResults[] );
This method is called as a result of a call to the OnQueryAddFilesEx method.
This method is similar to the OnQueryAddFiles method, except this method takes an additional array of destination file names that reflect the final location of the files.
This method is typically called by a directory-based project in which files extracted from source control are moved to a final location different from where they were originally extracted to.
This method is often implemented by source code control plug-ins.