1 write to _suggestionManager
Microsoft.CodeAnalysis.EditorFeatures (1)
DocumentationComments\CopilotGenerateDocumentationCommentProvider.cs (1)
42
_suggestionManager
??= await suggestionServiceBase.TryRegisterProviderAsync(this, textView, "AmbientAIDocumentationComments", cancellationToken).ConfigureAwait(false);
3 references to _suggestionManager
Microsoft.CodeAnalysis.EditorFeatures (3)
DocumentationComments\CopilotGenerateDocumentationCommentProvider.cs (3)
31
public bool Enabled => _enabled && (
_suggestionManager
!= null);
65
var intellicodeLineCompletionsDisposable = await
_suggestionManager
!.DisableProviderAsync(SuggestionServiceNames.IntelliCodeLineCompletions, cancellationToken).ConfigureAwait(false);
77
var suggestion = new DocumentationCommentSuggestion(this, proposal,
_suggestionManager
, intellicodeLineCompletionsDisposable);