2 writes to _includeSuppressedDiagnostics
Microsoft.CodeAnalysis.LanguageServer.Protocol (2)
Features\CodeFixes\CodeFixService.FixAllDiagnosticProvider.cs (2)
36_includeSuppressedDiagnostics = true; 41_includeSuppressedDiagnostics = false;
4 references to _includeSuppressedDiagnostics
Microsoft.CodeAnalysis.LanguageServer.Protocol (4)
Features\CodeFixes\CodeFixService.FixAllDiagnosticProvider.cs (4)
48var diagnostics = await _diagnosticService.GetDiagnosticsForIdsAsync(solution, null, document.Id, _diagnosticIds, _includeSuppressedDiagnostics, cancellationToken).ConfigureAwait(false); 56var diagnostics = await _diagnosticService.GetDiagnosticsForSpanAsync(document, fixAllSpan, shouldIncludeDiagnostic, _includeSuppressedDiagnostics, cancellationToken: cancellationToken).ConfigureAwait(false); 64var diagnostics = await _diagnosticService.GetDiagnosticsForIdsAsync(project.Solution, project.Id, documentId: null, _diagnosticIds, _includeSuppressedDiagnostics, cancellationToken).ConfigureAwait(false); 71var diagnostics = await _diagnosticService.GetProjectDiagnosticsForIdsAsync(project.Solution, project.Id, _diagnosticIds, _includeSuppressedDiagnostics, cancellationToken).ConfigureAwait(false);