ICompletionPresenter.Update Method

Definition

Overloads

Update(CompletionPresentationViewModel)

Updates the UI with provided data

Update(IAsyncCompletionSession, CompletionPresentationViewModel)

Updates the UI with provided data

Update(CompletionPresentationViewModel)

Updates the UI with provided data

public:
 void Update(Microsoft::VisualStudio::Language::Intellisense::AsyncCompletion::Data::CompletionPresentationViewModel ^ presentation);
public void Update (Microsoft.VisualStudio.Language.Intellisense.AsyncCompletion.Data.CompletionPresentationViewModel presentation);
abstract member Update : Microsoft.VisualStudio.Language.Intellisense.AsyncCompletion.Data.CompletionPresentationViewModel -> unit
Public Sub Update (presentation As CompletionPresentationViewModel)

Parameters

presentation
CompletionPresentationViewModel

Data to display in the UI

Applies to

Update(IAsyncCompletionSession, CompletionPresentationViewModel)

Updates the UI with provided data

public:
 void Update(Microsoft::VisualStudio::Language::Intellisense::AsyncCompletion::IAsyncCompletionSession ^ session, Microsoft::VisualStudio::Language::Intellisense::AsyncCompletion::Data::CompletionPresentationViewModel ^ presentation);
public void Update (Microsoft.VisualStudio.Language.Intellisense.AsyncCompletion.IAsyncCompletionSession session, Microsoft.VisualStudio.Language.Intellisense.AsyncCompletion.Data.CompletionPresentationViewModel presentation);
abstract member Update : Microsoft.VisualStudio.Language.Intellisense.AsyncCompletion.IAsyncCompletionSession * Microsoft.VisualStudio.Language.Intellisense.AsyncCompletion.Data.CompletionPresentationViewModel -> unit
Public Sub Update (session As IAsyncCompletionSession, presentation As CompletionPresentationViewModel)

Parameters

session
IAsyncCompletionSession

IAsyncCompletionSession which invoked this operation

presentation
CompletionPresentationViewModel

Data to display in the UI

Applies to