共用方式為


ExternalException 建構函式

定義

初始化 ExternalException 類別的新執行個體。

多載

名稱 Description
ExternalException()

初始化一個帶有預設屬性的新 ExternalException 類別實例。

ExternalException(String)

初始化類別的新實例 ExternalException 並指定錯誤訊息。

ExternalException(SerializationInfo, StreamingContext)
已淘汰.

從序列化資料初始化該類別的新實例 ExternalException

ExternalException(String, Exception)

初始化類別的新實例 ExternalException ,並附上指定的錯誤訊息及導致該異常的內部例外的參考。

ExternalException(String, Int32)

初始化類別的新實例 ExternalException ,並以指定的錯誤訊息及錯誤的 HRESULT 初始化。

ExternalException()

來源:
ExternalException.cs
來源:
ExternalException.cs
來源:
ExternalException.cs
來源:
ExternalException.cs
來源:
ExternalException.cs

初始化一個帶有預設屬性的新 ExternalException 類別實例。

public:
 ExternalException();
public ExternalException();
Public Sub New ()

備註

下表顯示了 的 ExternalException初始屬性值。

房產 價值
InnerException 一個空參考(Nothing Visual Basic 中的 Reference)。
Message 一個局部錯誤訊息字串。

適用於

ExternalException(String)

來源:
ExternalException.cs
來源:
ExternalException.cs
來源:
ExternalException.cs
來源:
ExternalException.cs
來源:
ExternalException.cs

初始化類別的新實例 ExternalException 並指定錯誤訊息。

public:
 ExternalException(System::String ^ message);
public ExternalException(string? message);
public ExternalException(string message);
new System.Runtime.InteropServices.ExternalException : string -> System.Runtime.InteropServices.ExternalException
Public Sub New (message As String)

參數

message
String

錯誤訊息,說明例外原因。

備註

下表顯示了 的 ExternalException初始屬性值。

房產 價值
InnerException 一個空參考(Nothing Visual Basic 中的 Reference)。
Message 錯誤訊息字串。

適用於

ExternalException(SerializationInfo, StreamingContext)

來源:
ExternalException.cs
來源:
ExternalException.cs
來源:
ExternalException.cs
來源:
ExternalException.cs
來源:
ExternalException.cs

警告

This API supports obsolete formatter-based serialization. It should not be called or extended by application code.

從序列化資料初始化該類別的新實例 ExternalException

protected:
 ExternalException(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);
[System.Obsolete("This API supports obsolete formatter-based serialization. It should not be called or extended by application code.", DiagnosticId="SYSLIB0051", UrlFormat="https://aka.ms/dotnet-warnings/{0}")]
protected ExternalException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
protected ExternalException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
[<System.Obsolete("This API supports obsolete formatter-based serialization. It should not be called or extended by application code.", DiagnosticId="SYSLIB0051", UrlFormat="https://aka.ms/dotnet-warnings/{0}")>]
new System.Runtime.InteropServices.ExternalException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.Runtime.InteropServices.ExternalException
new System.Runtime.InteropServices.ExternalException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.Runtime.InteropServices.ExternalException
Protected Sub New (info As SerializationInfo, context As StreamingContext)

參數

info
SerializationInfo

存放序列化物件資料的物件。

context
StreamingContext

關於來源或目的地的上下文資訊。

屬性

例外狀況

infonull

備註

此建構子在反序列化過程中被呼叫,以重建透過串流傳輸的例外物件。 欲了解更多資訊,請參閱 XML 與 SOAP 序列化

適用於

ExternalException(String, Exception)

來源:
ExternalException.cs
來源:
ExternalException.cs
來源:
ExternalException.cs
來源:
ExternalException.cs
來源:
ExternalException.cs

初始化類別的新實例 ExternalException ,並附上指定的錯誤訊息及導致該異常的內部例外的參考。

public:
 ExternalException(System::String ^ message, Exception ^ inner);
public ExternalException(string? message, Exception? inner);
public ExternalException(string message, Exception inner);
new System.Runtime.InteropServices.ExternalException : string * Exception -> System.Runtime.InteropServices.ExternalException
Public Sub New (message As String, inner As Exception)

參數

message
String

錯誤訊息解釋了例外原因。

inner
Exception

該例外即為當前例外的原因。 若 inner 參數不 null為 ,則在處理內部異常的區塊中提出 catch 當前例外。

備註

因先前例外直接拋出的例外,應包含對該屬性中 InnerException 先前例外的參考。 該 InnerException 屬性回傳與傳入建構子相同的值,或 null 若該 InnerException 性質未提供內部例外值給建構子。

下表顯示了 的 ExternalException初始屬性值。

房產 價值
InnerException 內部例外的參考。
Message 錯誤訊息字串。

另請參閱

適用於

ExternalException(String, Int32)

來源:
ExternalException.cs
來源:
ExternalException.cs
來源:
ExternalException.cs
來源:
ExternalException.cs
來源:
ExternalException.cs

初始化類別的新實例 ExternalException ,並以指定的錯誤訊息及錯誤的 HRESULT 初始化。

public:
 ExternalException(System::String ^ message, int errorCode);
public ExternalException(string? message, int errorCode);
public ExternalException(string message, int errorCode);
new System.Runtime.InteropServices.ExternalException : string * int -> System.Runtime.InteropServices.ExternalException
Public Sub New (message As String, errorCode As Integer)

參數

message
String

錯誤訊息,說明例外原因。

errorCode
Int32

錯誤的結果。

備註

下表顯示了 的 ExternalException初始屬性值。

房產 價值
ErrorCode 錯誤的結果。
InnerException 一個空參考(Nothing Visual Basic 中的 Reference)。
Message 錯誤訊息字串。

適用於