-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Expand file tree
/
Copy pathHostAbortedException.xml
More file actions
109 lines (103 loc) · 6.29 KB
/
HostAbortedException.xml
File metadata and controls
109 lines (103 loc) · 6.29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<Type Name="HostAbortedException" FullName="Microsoft.Extensions.Hosting.HostAbortedException">
<TypeSignature Language="C#" Value="public sealed class HostAbortedException : Exception" />
<TypeSignature Language="ILAsm" Value=".class public auto ansi serializable sealed beforefieldinit HostAbortedException extends System.Exception" />
<TypeSignature Language="DocId" Value="T:Microsoft.Extensions.Hosting.HostAbortedException" />
<TypeSignature Language="VB.NET" Value="Public NotInheritable Class HostAbortedException
Inherits Exception" />
<TypeSignature Language="F#" Value="type HostAbortedException = class
 inherit Exception" />
<TypeSignature Language="C++ CLI" Value="public ref class HostAbortedException sealed : Exception" />
<AssemblyInfo>
<AssemblyName>Microsoft.Extensions.Hosting.Abstractions</AssemblyName>
<AssemblyVersion>7.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Base>
<BaseTypeName>System.Exception</BaseTypeName>
</Base>
<Interfaces />
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.Serializable]</AttributeName>
<AttributeName Language="F#">[<System.Serializable>]</AttributeName>
</Attribute>
</Attributes>
<Docs>
<summary>The exception that is thrown upon <see cref="T:Microsoft.Extensions.Hosting.IHost" /> abortion.</summary>
<remarks>To be added.</remarks>
</Docs>
<Members>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="public HostAbortedException ();" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor() cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Extensions.Hosting.HostAbortedException.#ctor" />
<MemberSignature Language="VB.NET" Value="Public Sub New ()" />
<MemberSignature Language="C++ CLI" Value="public:
 HostAbortedException();" />
<MemberType>Constructor</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Extensions.Hosting.Abstractions</AssemblyName>
<AssemblyVersion>7.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Parameters />
<Docs>
<summary>Initializes a new instance of the <see cref="T:Microsoft.Extensions.Hosting.HostAbortedException" /> class with a system-supplied error message.</summary>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="public HostAbortedException (string? message);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor(string message) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Extensions.Hosting.HostAbortedException.#ctor(System.String)" />
<MemberSignature Language="VB.NET" Value="Public Sub New (message As String)" />
<MemberSignature Language="F#" Value="new Microsoft.Extensions.Hosting.HostAbortedException : string -> Microsoft.Extensions.Hosting.HostAbortedException" Usage="new Microsoft.Extensions.Hosting.HostAbortedException message" />
<MemberSignature Language="C++ CLI" Value="public:
 HostAbortedException(System::String ^ message);" />
<MemberType>Constructor</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Extensions.Hosting.Abstractions</AssemblyName>
<AssemblyVersion>7.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Parameters>
<Parameter Name="message" Type="System.String" />
</Parameters>
<Docs>
<param name="message">The error message that explains the reason for the exception.</param>
<summary>Initializes a new instance of the <see cref="T:Microsoft.Extensions.Hosting.HostAbortedException" /> class with a specified error message.</summary>
<remarks>
<format type="text/markdown"><![CDATA[
## Remarks
The content of `message` is intended to be understood by humans.
The caller of this constructor is required to ensure that this string has been localized for the
current system culture.
]]></format>
</remarks>
</Docs>
</Member>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="public HostAbortedException (string? message, Exception? innerException);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor(string message, class System.Exception innerException) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Extensions.Hosting.HostAbortedException.#ctor(System.String,System.Exception)" />
<MemberSignature Language="VB.NET" Value="Public Sub New (message As String, innerException As Exception)" />
<MemberSignature Language="F#" Value="new Microsoft.Extensions.Hosting.HostAbortedException : string * Exception -> Microsoft.Extensions.Hosting.HostAbortedException" Usage="new Microsoft.Extensions.Hosting.HostAbortedException (message, innerException)" />
<MemberSignature Language="C++ CLI" Value="public:
 HostAbortedException(System::String ^ message, Exception ^ innerException);" />
<MemberType>Constructor</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Extensions.Hosting.Abstractions</AssemblyName>
<AssemblyVersion>7.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Parameters>
<Parameter Name="message" Type="System.String" />
<Parameter Name="innerException" Type="System.Exception" />
</Parameters>
<Docs>
<param name="message">The error message that explains the reason for the exception.</param>
<param name="innerException">The exception that is the cause of the current exception.</param>
<summary>Initializes a new instance of the <see cref="T:Microsoft.Extensions.Hosting.HostAbortedException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception.</summary>
<remarks>
<format type="text/markdown"><![CDATA[
## Remarks
The content of `message` is intended to be understood by humans.
The caller of this constructor is required to ensure that this string has been localized for the
current system culture.
]]></format>
</remarks>
</Docs>
</Member>
</Members>
</Type>