Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
SuppressMessageAttribute.cs
Go to the documentation of this file.
2
3[AttributeUsage(AttributeTargets.All, Inherited = false, AllowMultiple = true)]
4[Conditional("CODE_ANALYSIS")]
6{
7 public string Category { get; }
8
9 public string CheckId { get; }
10
11 public string? Scope { get; set; }
12
13 public string? Target { get; set; }
14
15 public string? MessageId { get; set; }
16
17 public string? Justification { get; set; }
18
19 public SuppressMessageAttribute(string category, string checkId)
20 {
21 Category = category;
22 CheckId = checkId;
23 }
24}