TargetException 建構函式

定義

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

多載

名稱 Description
TargetException()

初始化一個新的類別實例 TargetException ,並以空訊息及例外的根本原因。

TargetException(String)

初始化一個新的類別實例 TargetException ,包含給定訊息及根因例外。

TargetException(SerializationInfo, StreamingContext)
已淘汰.

初始化類別的新實例 TargetException ,並依指定的序列化與上下文資訊。

TargetException(String, Exception)

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

TargetException()

來源:
TargetException.cs
來源:
TargetException.cs
來源:
TargetException.cs
來源:
TargetException.cs
來源:
TargetException.cs

初始化一個新的類別實例 TargetException ,並以空訊息及例外的根本原因。

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

備註

InnerException屬性設為 ,nullHRESULT 錯誤碼設為 COR_E_TARGET。

TargetException 繼承自 Exception。 此建構器設定物件的 Exception 屬性如下表所示。

房產 價值
InnerException null
Message 空字串(“”)。

適用於

TargetException(String)

來源:
TargetException.cs
來源:
TargetException.cs
來源:
TargetException.cs
來源:
TargetException.cs
來源:
TargetException.cs

初始化一個新的類別實例 TargetException ,包含給定訊息及根因例外。

public:
 TargetException(System::String ^ message);
public TargetException(string? message);
public TargetException(string message);
new System.Reflection.TargetException : string -> System.Reflection.TargetException
Public Sub New (message As String)

參數

message
String

String說明了該例外發生的原因。

備註

TargetException 繼承自 Exception。 此建構器設定物件的 Exception 屬性如下表所示。

房產 價值
InnerException null
Message 訊息字串。

適用於

TargetException(SerializationInfo, StreamingContext)

來源:
TargetException.cs
來源:
TargetException.cs
來源:
TargetException.cs
來源:
TargetException.cs
來源:
TargetException.cs

警告

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

初始化類別的新實例 TargetException ,並依指定的序列化與上下文資訊。

protected:
 TargetException(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 TargetException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
protected TargetException(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.Reflection.TargetException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.Reflection.TargetException
new System.Reflection.TargetException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.Reflection.TargetException
Protected Sub New (info As SerializationInfo, context As StreamingContext)

參數

info
SerializationInfo

用於序列化或反序列化物件的資料。

context
StreamingContext

物件的來源與目的地。

屬性

適用於

TargetException(String, Exception)

來源:
TargetException.cs
來源:
TargetException.cs
來源:
TargetException.cs
來源:
TargetException.cs
來源:
TargetException.cs

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

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

參數

message
String

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

inner
Exception

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

備註

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

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

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

另請參閱

適用於