1 write to Attribute
Microsoft.CodeAnalysis (1)
Diagnostic\SuppressionInfo.cs (1)
26
Attribute
= attribute;
5 references to Attribute
Microsoft.CodeAnalysis (2)
CommandLine\SarifV2ErrorLogger.cs (2)
77
string? justification = suppressionInfo?.
Attribute
?.DecodeNamedArgument<string>("Justification", SpecialType.System_String);
94
suppressionType = suppressionInfo.
Attribute
!= null ? "SuppressMessageAttribute" : "Pragma Directive";
Microsoft.CodeAnalysis.CodeStyle (1)
AbstractRemoveUnnecessaryPragmaSuppressionsDiagnosticAnalyzer.cs (1)
527
if (suppressionInfo.
Attribute
is { } attribute)
Microsoft.CodeAnalysis.Features (2)
AbstractRemoveUnnecessaryPragmaSuppressionsDiagnosticAnalyzer.cs (1)
527
if (suppressionInfo.
Attribute
is { } attribute)
CodeFixes\Suppression\AbstractSuppressionCodeFixProvider.RemoveSuppressionCodeAction.cs (1)
34
var attribute = diagnostic.GetSuppressionInfo(compilation).
Attribute
;