5 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)
205internal 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)
2 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);