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