1 instantiation of CopilotGenerateDocumentationCommentProvider
Microsoft.CodeAnalysis.EditorFeatures (1)
DocumentationComments\CopilotGenerateDocumentationCommentManager.cs (1)
101() => new CopilotGenerateDocumentationCommentProvider(_threadingContext, copilotService));
8 references to CopilotGenerateDocumentationCommentProvider
Microsoft.CodeAnalysis.EditorFeatures (8)
DocumentationComments\CopilotGenerateDocumentationCommentManager.cs (7)
62if (textView.Properties.TryGetProperty<CopilotGenerateDocumentationCommentProvider>( 63typeof(CopilotGenerateDocumentationCommentProvider), out var existingProvider)) 84var generateDocumentationCommentProvider = await CreateProviderAsync(document, textView, snippet.MemberNode, cancellationToken).ConfigureAwait(false); 91private async Task<CopilotGenerateDocumentationCommentProvider?> CreateProviderAsync(Document document, ITextView textView, SyntaxNode? memberNode, CancellationToken cancellationToken) 100var provider = textView.Properties.GetOrCreateSingletonProperty(typeof(CopilotGenerateDocumentationCommentProvider),
DocumentationComments\DocumentationCommentSuggestion.cs (1)
18internal sealed class DocumentationCommentSuggestion(CopilotGenerateDocumentationCommentProvider providerInstance,