14 references to IsSuppressed
Microsoft.CodeAnalysis.Features (8)
CodeFixes\Service\CodeFixService.cs (4)
113allDiagnostics = allDiagnostics.WhereAsArray(d => !d.IsSuppressed); 202diagnostics = diagnostics.WhereAsArray(d => !d.IsSuppressed); 270if (diagnostic.IsSuppressed) 309diagnostics = diagnostics.WhereAsArray(d => !d.IsSuppressed);
CodeFixes\Service\CodeFixService.FixAllDiagnosticProvider.cs (1)
41=> diagnostics.WhereAsArray(d => _includeSuppressedDiagnostics || !d.IsSuppressed);
Copilot\ICopilotChangeAnalysisService.cs (1)
221if (IsVisibleDiagnostic(diagnostic.IsSuppressed, diagnostic.Severity))
Diagnostics\CodeAnalysisDiagnosticAnalyzerService.cs (2)
126!d.IsSuppressed && d.DataLocation.DocumentId == documentId, documentId); 146!d.IsSuppressed && d.ProjectId == projectId && d.DataLocation.DocumentId == null, projectId);
Microsoft.CodeAnalysis.Workspaces (6)
Diagnostics\DiagnosticData.cs (6)
104Language, Title, Description, HelpLink, IsSuppressed); 109Language, Title, Description, HelpLink, IsSuppressed); 135IsSuppressed == other.IsSuppressed && 148Hash.Combine(IsSuppressed, 168IsEnabledByDefault, WarningLevel, IsSuppressed, Title, Description, HelpLink,