ICompletionPresenter.Open Method

Definition

Overloads

Open(CompletionPresentationViewModel)

Opens the UI and displays provided data

Open(IAsyncCompletionSession, CompletionPresentationViewModel)

Opens the UI and displays provided data

Open(CompletionPresentationViewModel)

Opens the UI and displays provided data

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

Parameters

presentation
CompletionPresentationViewModel

Data to display in the UI

Applies to

Open(IAsyncCompletionSession, CompletionPresentationViewModel)

Opens the UI and displays provided data

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

Parameters

session
IAsyncCompletionSession

IAsyncCompletionSession which invoked this operation

presentation
CompletionPresentationViewModel

Data to display in the UI

Applies to