SuppressMessageAttribute.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / clr / src / BCL / System / Diagnostics / CodeAnalysis / SuppressMessageAttribute.cs / 1305376 / SuppressMessageAttribute.cs

                            // ==++== 
//
//   Copyright (c) Microsoft Corporation.  All rights reserved.
//
// ==--== 
/*============================================================
** 
** Class:  SuppressMessageAttribute 
**
** 
**  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; }
        }
    } 
}

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.


                        

Link Menu

Network programming in C#, Network Programming in VB.NET, Network Programming in .NET
This book is available now!
Buy at Amazon US or
Buy at Amazon UK