ITableDataSink.ReplaceEntries 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.
Remove oldEntries
and add newEntries
.
public:
void ReplaceEntries(System::Collections::Generic::IReadOnlyList<Microsoft::VisualStudio::Shell::TableManager::ITableEntry ^> ^ oldEntries, System::Collections::Generic::IReadOnlyList<Microsoft::VisualStudio::Shell::TableManager::ITableEntry ^> ^ newEntries);
public void ReplaceEntries (System.Collections.Generic.IReadOnlyList<Microsoft.VisualStudio.Shell.TableManager.ITableEntry> oldEntries, System.Collections.Generic.IReadOnlyList<Microsoft.VisualStudio.Shell.TableManager.ITableEntry> newEntries);
abstract member ReplaceEntries : System.Collections.Generic.IReadOnlyList<Microsoft.VisualStudio.Shell.TableManager.ITableEntry> * System.Collections.Generic.IReadOnlyList<Microsoft.VisualStudio.Shell.TableManager.ITableEntry> -> unit
Public Sub ReplaceEntries (oldEntries As IReadOnlyList(Of ITableEntry), newEntries As IReadOnlyList(Of ITableEntry))
Parameters
- oldEntries
- IReadOnlyList<ITableEntry>
- newEntries
- IReadOnlyList<ITableEntry>
Remarks
oldEntries
and newEntries
must be immutable/callable from any thread.