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.Runtime.ExceptionServices.md
Rich Lander 8c8e5836c3 Fix linter errors in repo (#9689)
* Fix linter errors

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

466 B

System.Runtime.ExceptionServices

+namespace System.Runtime.ExceptionServices {
+    public sealed class ExceptionDispatchInfo {
+        public Exception SourceException { get; }
+        public static ExceptionDispatchInfo Capture(Exception source);
+        public void Throw();
+    }
+    public sealed class HandleProcessCorruptedStateExceptionsAttribute : Attribute {
+        public HandleProcessCorruptedStateExceptionsAttribute();
+    }
+}