dotnet-core/release-notes/1.0/1.0.0-api/1.0.0-api_System.Diagnostics.CodeAnalysis.md
2017-07-05 14:24:38 -07:00

509 B

System.Diagnostics.CodeAnalysis

+namespace System.Diagnostics.CodeAnalysis {
+    public sealed class SuppressMessageAttribute : Attribute {
+        public SuppressMessageAttribute(string category, string checkId);
+        public string Category { get; }
+        public string CheckId { get; }
+        public string Justification { get; set; }
+        public string MessageId { get; set; }
+        public string Scope { get; set; }
+        public string Target { get; set; }
+    }
+}