summaryrefslogtreecommitdiff
path: root/src/mscorlib/src/System/Diagnostics/CodeAnalysis/SuppressMessageAttribute.cs
blob: fb26fcc4ab710cf12decfa32f94eb560a77ecce9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.

/*============================================================
**
**
**
**  An attribute to suppress violation messages/warnings   
**  by static code analysis tools. 
**
** 
===========================================================*/

using System;

namespace System.Diagnostics.CodeAnalysis
{

    [AttributeUsage(
     AttributeTargets.All,
     Inherited = false,
     AllowMultiple = true
     )
    ]
    [Conditional("CODE_ANALYSIS")]
    public sealed class SuppressMessageAttribute : Attribute
    {
        private string category;
        private string justification;
        private string checkId;
        private string scope;
        private string target;
        private string messageId;
        
        public SuppressMessageAttribute(string category, string checkId)
        {
            this.category  = category;
            this.checkId = checkId;
        }
        
        public string Category
        {
            get { return category; }
        }
        
        public string CheckId
        {
            get { return checkId; }
        }
        
        public string Scope
        {
            get { return scope; }
            set { scope = value; }
        }
    
        public string Target
        {
            get { return target; }
            set { target = value; }
        }
    
        public string MessageId
        {
            get { return messageId; }
            set { messageId = value; }
        }
        
        public string Justification
        {
            get { return justification; }
            set { justification = value; }
        }
    }
}