ITableDataSink.AddEntries(IReadOnlyList<ITableEntry>, Boolean) 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.
Add the specified ITableEntrys.
public void AddEntries (System.Collections.Generic.IReadOnlyList<Microsoft.VisualStudio.Shell.TableManager.ITableEntry> newEntries, bool removeAllEntries = false);
abstract member AddEntries : System.Collections.Generic.IReadOnlyList<Microsoft.VisualStudio.Shell.TableManager.ITableEntry> * bool -> unit
Public Sub AddEntries (newEntries As IReadOnlyList(Of ITableEntry), Optional removeAllEntries As Boolean = false)
Parameters
- newEntries
- IReadOnlyList<ITableEntry>
new entries to be added.
- removeAllEntries
- Boolean
if true, remove all pre-existing entries.
Remarks
newEntries
must be immutable/callable from any thread.
In general, any call to an ITableDataSink will not take effect immediately. Consumers may batch changes up and process them, after a delay, on a background thread.