1 write to _suggestionManager
Microsoft.CodeAnalysis.EditorFeatures (1)
DocumentationComments\CopilotGenerateDocumentationCommentProvider.cs (1)
46
_suggestionManager
??= await suggestionServiceBase.TryRegisterProviderAsync(this, textView, "AmbientAIDocumentationComments", cancellationToken).ConfigureAwait(false);
4 references to _suggestionManager
Microsoft.CodeAnalysis.EditorFeatures (4)
DocumentationComments\CopilotGenerateDocumentationCommentProvider.cs (4)
34
[MemberNotNullWhen(true, nameof(
_suggestionManager
))]
35
public bool Enabled => _enabled && (
_suggestionManager
!= null);
71
var intelliCodeLineCompletionsDisposable = await
_suggestionManager
.DisableProviderAsync(SuggestionServiceNames.IntelliCodeLineCompletions, cancellationToken).ConfigureAwait(false);
73
var suggestion = new DocumentationCommentSuggestion(this,
_suggestionManager
, intelliCodeLineCompletionsDisposable);