IVsTrackProjectDocumentsEvents3.OnBeginQueryBatch Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Indicates that a project is about start a batch query process.
public:
int OnBeginQueryBatch();
public:
int OnBeginQueryBatch();
int OnBeginQueryBatch();
public int OnBeginQueryBatch ();
abstract member OnBeginQueryBatch : unit -> int
Public Function OnBeginQueryBatch () As Integer
Returns
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Remarks
COM Signature
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.