1 instantiation of DocumentationCommentProposal
Microsoft.CodeAnalysis.Features (1)
DocumentationComments\CopilotDocumentationCommentGenerator.cs (1)
120return new DocumentationCommentProposal(memberNode.ToFullString(), proposedEdits.ToImmutableAndFree());
8 references to DocumentationCommentProposal
Microsoft.CodeAnalysis.Features (3)
Copilot\ICopilotCodeAnalysisService.cs (1)
89Task<(Dictionary<string, string>? responseDictionary, bool isQuotaExceeded)> GetDocumentationCommentAsync(DocumentationCommentProposal proposal, CancellationToken cancellationToken);
DocumentationComments\CopilotDocumentationCommentGenerator.cs (2)
30public static DocumentationCommentProposal? GetSnippetProposal(string comments, SyntaxNode memberNode, int? position, int caret) 129DocumentationCommentProposal proposal, ICopilotCodeAnalysisService copilotService,
Microsoft.CodeAnalysis.Features.ExternalAccess (5)
Copilot\GenerateDocumentation\CopilotDocumentationCommentProposalWrapper.cs (2)
12private readonly DocumentationCommentProposal _documentationCommentProposal; 15public CopilotDocumentationCommentProposalWrapper(DocumentationCommentProposal documentationCommentProposal)
Copilot\Internal\Analyzer\AbstractCopilotCodeAnalysisService.cs (2)
48protected abstract Task<(Dictionary<string, string>? responseDictionary, bool isQuotaExceeded)> GetDocumentationCommentCoreAsync(DocumentationCommentProposal proposal, CancellationToken cancellationToken); 203public async Task<(Dictionary<string, string>? responseDictionary, bool isQuotaExceeded)> GetDocumentationCommentAsync(DocumentationCommentProposal proposal, CancellationToken cancellationToken)
Copilot\Internal\Analyzer\CSharp\CSharpCopilotCodeAnalysisService.cs (1)
146protected override Task<(Dictionary<string, string>? responseDictionary, bool isQuotaExceeded)> GetDocumentationCommentCoreAsync(DocumentationCommentProposal proposal, CancellationToken cancellationToken)