Implemented interface member:
method
GetDiagnosticsAsync
Microsoft.CodeAnalysis.Diagnostics.IDiagnosticAnalyzerService.GetDiagnosticsAsync(Microsoft.CodeAnalysis.Solution, Microsoft.CodeAnalysis.ProjectId, Microsoft.CodeAnalysis.DocumentId, System.Boolean, System.Threading.CancellationToken)
10 references to GetDiagnosticsAsync
Microsoft.CodeAnalysis.EditorFeatures.Test.Utilities (3)
Diagnostics\TestDiagnosticAnalyzerDriver.cs (2)
62var dxs = await _diagnosticAnalyzerService.GetDiagnosticsAsync(project.Solution, project.Id, document.Id, _includeSuppressedDiagnostics); 73var dxs = await _diagnosticAnalyzerService.GetDiagnosticsAsync(project.Solution, project.Id, includeSuppressedDiagnostics: _includeSuppressedDiagnostics);
Squiggles\SquiggleUtilities.cs (1)
46var analyzerDiagnostics = await wrapper.AnalyzerService.GetDiagnosticsAsync(workspace.CurrentSolution);
Microsoft.CodeAnalysis.EditorFeatures2.UnitTests (6)
Diagnostics\DiagnosticServiceTests.vb (6)
537diagnostics = Await diagnosticService.GetDiagnosticsAsync(project.Solution).ConfigureAwait(False) 637Dim diagnostics = Await diagnosticService.GetDiagnosticsAsync(project.Solution, project.Id) 980Dim diagnostics = (Await diagnosticService.GetDiagnosticsAsync(project.Solution, project.Id)). 1075Dim diagnostics = Await diagnosticService.GetDiagnosticsAsync(project.Solution, project.Id) 2186Dim hiddenDiagnostics = Await diagnosticService.GetDiagnosticsAsync(project.Solution, project.Id) 2273Dim diagnostics = Await diagnosticService.GetDiagnosticsAsync(project.Solution, project.Id)
Microsoft.VisualStudio.LanguageServices.UnitTests (1)
Venus\DocumentService_IntegrationTests.vb (1)
241Dim diagnostics = Await diagnosticService.GetDiagnosticsAsync(workspace.CurrentSolution, documentId:=document.Id)