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))] 35public bool Enabled => _enabled && (_suggestionManager != null); 71var intelliCodeLineCompletionsDisposable = await _suggestionManager.DisableProviderAsync(SuggestionServiceNames.IntelliCodeLineCompletions, cancellationToken).ConfigureAwait(false); 73var suggestion = new DocumentationCommentSuggestion(this, _suggestionManager, intelliCodeLineCompletionsDisposable);