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