1
0
mirror of synced 2025-12-19 18:06:02 -05:00
Files
core/release-notes/1.0/1.0.0-api/1.0.0-api_System.Security.Cryptography.Xml.md
Rich Lander 8c8e5836c3 Fix linter errors in repo (#9689)
* Fix linter errors

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

355 B

System.Security.Cryptography.Xml

+namespace System.Security.Cryptography.Xml {
+    [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
+    public struct X509IssuerSerial {
+        public string IssuerName { get; set; }
+        public string SerialNumber { get; set; }
+    }
+}