Welcome to mirror list, hosted at ThFree Co, Russian Federation.

7.0-preview6_Microsoft.Extensions.Hosting.md « Microsoft.AspNetCore.App « preview6 « api-diff « preview « 7.0 « release-notes - github.com/dotnet/core.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2456197dafa95e3367ea70d540b3d7135f0414a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# Microsoft.Extensions.Hosting

``` diff
 namespace Microsoft.Extensions.Hosting {
+    public sealed class HostAbortedException : Exception {
+        public HostAbortedException();
+        public HostAbortedException(string message);
+        public HostAbortedException(string message, Exception innerException);
+    }
 }
```