IVsTrackProjectDocuments2.EndBatch Method
This method ends the batch started by BeginBatch and displays any user interface (UI) that was generated within the batch.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)
Syntax
'Declaration
Function EndBatch As Integer
int EndBatch()
int EndBatch()
abstract EndBatch : unit -> int
function EndBatch() : int
Return Value
Type: Int32
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Remarks
COM Signature
From IVsTrackProjectDocuments2.idl
HRESULT EndBatch();
The IVsTrackProjectDocuments2 interface allows projects to tell the environment when a project item has been added, removed, or renamed. During these operations, UI is sometimes displayed. BeginBatch informs the environment that you are going to call several IVsTrackProjectDocuments2.OnAfter* methods, and that you would like the user to receive only one UI display for those calls. Batching these calls using BeginBatch and IVsTrackProjectDocuments2.EndBatch increases the likelihood that the environment will display only one UI display; however, this is not guaranteed.
Call BeginBatch to start the batch, make multiple IVsTrackProjectDocuments2 calls, and then call IVsTrackProjectDocuments2.EndBatch to display the UI.
Note
You can batch only OnAfter* methods. OnQuery* methods cannot be batched.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.