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

16 lines
467 B
Markdown

# System.Runtime.ExceptionServices
``` diff
+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();
+ }
+}
```