CustomAttributeFormatException 建構函式

定義

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

多載

CustomAttributeFormatException()

使用預設屬性,初始化 CustomAttributeFormatException 類別的新執行個體。

CustomAttributeFormatException(String)

使用指定的訊息初始化 CustomAttributeFormatException 類別的新執行個體。

CustomAttributeFormatException(SerializationInfo, StreamingContext)
已淘汰.

使用指定的序列化及內容資訊,初始化 CustomAttributeFormatException 類別的新執行個體。

CustomAttributeFormatException(String, Exception)

使用指定的錯誤訊息以及造成此例外狀況的內部例外狀況的參考,初始化 CustomAttributeFormatException 類別的新執行個體。

CustomAttributeFormatException()

來源:
CustomAttributeFormatException.cs
來源:
CustomAttributeFormatException.cs
來源:
CustomAttributeFormatException.cs

使用預設屬性,初始化 CustomAttributeFormatException 類別的新執行個體。

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

備註

這個建構函式會使用空的訊息字串和設定為 的根本原因例外狀況null,初始化的實例CustomAttributeFormatException

此建構函式會設定 物件的屬性 Exception ,如下所示:

屬性
InnerException null
Message 空字串 (“”) 。

適用於

CustomAttributeFormatException(String)

來源:
CustomAttributeFormatException.cs
來源:
CustomAttributeFormatException.cs
來源:
CustomAttributeFormatException.cs

使用指定的訊息初始化 CustomAttributeFormatException 類別的新執行個體。

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

參數

message
String

訊息,表示擲回這個例外狀況的原因。

備註

此建構函式會設定 Exception 物件的屬性,如下所示:

屬性
InnerException null

另請參閱

適用於

CustomAttributeFormatException(SerializationInfo, StreamingContext)

來源:
CustomAttributeFormatException.cs
來源:
CustomAttributeFormatException.cs
來源:
CustomAttributeFormatException.cs

警告

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

使用指定的序列化及內容資訊,初始化 CustomAttributeFormatException 類別的新執行個體。

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

參數

info
SerializationInfo

用於序列化或還原序列化自訂屬性的資料。

context
StreamingContext

自訂屬性的來源和目的端。

屬性

適用於

CustomAttributeFormatException(String, Exception)

來源:
CustomAttributeFormatException.cs
來源:
CustomAttributeFormatException.cs
來源:
CustomAttributeFormatException.cs

使用指定的錯誤訊息以及造成此例外狀況的內部例外狀況的參考,初始化 CustomAttributeFormatException 類別的新執行個體。

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

參數

message
String

解釋例外狀況原因的錯誤訊息。

inner
Exception

做為目前例外狀況發生原因的例外狀況。 如果 inner 參數不是 null,則目前的例外狀況會在處理內部例外的 catch 區塊中引發。

備註

被擲回以做為前一個例外狀況直接結果的例外狀況,應該在 InnerException 屬性中包含對前一個例外狀況的參考。 InnerException 屬性傳回的值會與傳入建構函式的值相同,或傳回 null (如果 InnerException 屬性未提供內部例外狀況值給建構函式)。

下表顯示 CustomAttributeFormatException 執行個體的初始屬性值。

屬性
InnerException inner例外狀況。
Message 錯誤訊息字串。

另請參閱

適用於