dotnet-core/release-notes/1.0/1.0.0-api/1.0.0-api_System.Runtime.ExceptionServices.md

16 lines
467 B
Markdown
Raw Normal View History

2017-07-05 23:24:38 +02:00
# 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();
+ }
+}
```