ITableDataSink.AddEntries(IReadOnlyList<ITableEntry>, Boolean) Method

Definition

Add the specified ITableEntry objects.

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.

Applies to