2 implementations of GetDocumentationCommentAsync
Microsoft.CodeAnalysis.CSharp.Features.UnitTests (1)
Copilot\CSharpImplementNotImplementedExceptionFixProviderTests.cs (1)
661
Task<(Dictionary<string, string>? responseDictionary, bool isQuotaExceeded)> ICopilotCodeAnalysisService.
GetDocumentationCommentAsync
(DocumentationCommentProposal proposal, CancellationToken cancellationToken)
Microsoft.CodeAnalysis.ExternalAccess.Copilot (1)
Internal\Analyzer\AbstractCopilotCodeAnalysisService.cs (1)
203
public async Task<(Dictionary<string, string>? responseDictionary, bool isQuotaExceeded)>
GetDocumentationCommentAsync
(DocumentationCommentProposal proposal, CancellationToken cancellationToken)
1 reference to GetDocumentationCommentAsync
Microsoft.CodeAnalysis.EditorFeatures (1)
DocumentationComments\CopilotGenerateDocumentationCommentProvider.cs (1)
188
var (documentationCommentDictionary, isQuotaExceeded) = await copilotService.
GetDocumentationCommentAsync
(proposal, cancellationToken).ConfigureAwait(false);