1 implementation of GetDiagnosticsForIdsAsync
Microsoft.CodeAnalysis.Features (1)
Diagnostics\Service\DiagnosticAnalyzerService.cs (1)
120public Task<ImmutableArray<DiagnosticData>> GetDiagnosticsForIdsAsync(
8 references to GetDiagnosticsForIdsAsync
Microsoft.CodeAnalysis.EditorFeatures.UnitTests (2)
CodeFixes\CodeFixServiceTests.cs (1)
1061await analyzerService.GetDiagnosticsForIdsAsync(
Diagnostics\DiagnosticAnalyzerServiceTests.cs (1)
66var diagnostics = await service.GetDiagnosticsForIdsAsync(
Microsoft.CodeAnalysis.Features (3)
CodeFixes\Service\CodeFixService.FixAllDiagnosticProvider.cs (2)
47var diagnostics = Filter(await service.GetDiagnosticsForIdsAsync( 70var diagnostics = Filter(await service.GetDiagnosticsForIdsAsync(
Diagnostics\IDiagnosticAnalyzerService.cs (1)
61/// this method doesn't return any document diagnostics. Use <see cref="GetDiagnosticsForIdsAsync"/> to also fetch
Microsoft.CodeAnalysis.LanguageServer.Protocol (2)
Handler\Diagnostics\DiagnosticSources\AbstractWorkspaceDocumentDiagnosticSource.cs (1)
80var allDiagnostics = await service.GetDiagnosticsForIdsAsync(
Handler\Diagnostics\DiagnosticSources\NonLocalDocumentDiagnosticSource.cs (1)
30var diagnostics = await service.GetDiagnosticsForIdsAsync(
Microsoft.VisualStudio.LanguageServices (1)
TableDataSource\Suppression\VisualStudioSuppressionFixService.cs (1)
486var latestProjectDiagnostics = (await diagnosticService.GetDiagnosticsForIdsAsync(project, documentId: null,