IVsTrackProjectDocumentsEvents3::OnBeginQueryBatch Method ()
Visual Studio 2015
Indicates that a project is about start a batch query process.
Assembly: Microsoft.VisualStudio.Shell.Interop.8.0 (in Microsoft.VisualStudio.Shell.Interop.8.0.dll)
From ivstrackprojectdocumentsevents80.idl
HRESULT OnBeginQueryBatch(void);
This method is called as a result of a call to the BeginQueryBatch method.
This method does whatever setup is necessary to watch a batch query process. When the batch query process is over, the OnEndQueryBatch method or the OnCancelQueryBatch method is called, and those methods can clean up any allocations made in OnBeginQueryBatch).
For every call to this method, there is a corresponding call to either the OnEndQueryBatch method or the OnCancelQueryBatch method.
Show: