ISuggestionManager Interface

Definition

Caution

interface has not been finalized and may change without warning.

[System.Obsolete("interface has not been finalized and may change without warning.")]
public interface ISuggestionManager : Microsoft.VisualStudio.Threading.IAsyncDisposable
[<System.Obsolete("interface has not been finalized and may change without warning.")>]
type ISuggestionManager = interface
    interface IAsyncDisposable
Public Interface ISuggestionManager
Implements IAsyncDisposable
Attributes
Implements

Properties

CompletionState

Returns the completion state of the view (if any).

IsSuggestionDisplayed

Returns whether or not a suggestion is currently being displayed in the view.

View

The ITextView associated with the manager.

Methods

DisableProviderAsync(String, CancellationToken)

Disable a provider with the given name. Dispose of the returned IAsyncDisposable to reenable the provider.

DisposeAsync()

Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources asynchronously.

(Inherited from IAsyncDisposable)
TryDisplaySuggestionAsync(ISuggestion, CancellationToken)

Try to display a suggestion to the user.

Applies to