6 overrides of WithIsSuppressed
Microsoft.CodeAnalysis (5)
CommandLine\CommonCompiler.SuppressionDiagnostic.cs (1)
104internal override Diagnostic WithIsSuppressed(bool isSuppressed)
Diagnostic\Diagnostic.DiagnosticWithProgrammaticSuppression.cs (1)
133internal override Diagnostic WithIsSuppressed(bool isSuppressed)
Diagnostic\Diagnostic_SimpleDiagnostic.cs (1)
206internal override Diagnostic WithIsSuppressed(bool isSuppressed)
Diagnostic\DiagnosticWithInfo.cs (1)
220internal override Diagnostic WithIsSuppressed(bool isSuppressed)
DiagnosticAnalyzer\CompilerDiagnosticAnalyzer.CompilationAnalyzer.cs (1)
132internal override Diagnostic WithIsSuppressed(bool isSuppressed)
Microsoft.CodeAnalysis.ExpressionEvaluator.ExpressionCompiler (1)
EvaluationContextBase.cs (1)
175internal override Diagnostic WithIsSuppressed(bool isSuppressed)
3 references to WithIsSuppressed
Microsoft.CodeAnalysis (2)
DiagnosticAnalyzer\CompilerDiagnosticAnalyzer.CompilationAnalyzer.cs (1)
134return new CompilerDiagnostic(_original.WithIsSuppressed(isSuppressed), _properties);
DiagnosticAnalyzer\SuppressMessageAttributeState.cs (1)
123diagnostic = diagnostic.WithIsSuppressed(true);
Microsoft.CodeAnalysis.CSharp (1)
Compilation\CSharpDiagnosticFilter.cs (1)
114d = d.WithIsSuppressed(true);