1
0
mirror of synced 2025-12-19 09:50:46 -05:00
Files
core/release-notes/1.0/1.0.0-api/1.0.0-api_System.Diagnostics.CodeAnalysis.md
Rich Lander 8c8e5836c3 Fix linter errors in repo (#9689)
* Fix linter errors

* Update links
2025-01-13 21:40:52 -08:00

508 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; }
+    }
+}