Bagikan melalui


CustomAttributeFormatException Konstruktor

Definisi

Menginisialisasi instans baru kelas CustomAttributeFormatException.

Overload

CustomAttributeFormatException()

Menginisialisasi instans CustomAttributeFormatException baru kelas dengan properti default.

CustomAttributeFormatException(String)

Menginisialisasi instans CustomAttributeFormatException baru kelas dengan pesan yang ditentukan.

CustomAttributeFormatException(SerializationInfo, StreamingContext)
Kedaluwarsa.

Menginisialisasi instans CustomAttributeFormatException baru kelas dengan serialisasi dan informasi konteks yang ditentukan.

CustomAttributeFormatException(String, Exception)

Menginisialisasi instans CustomAttributeFormatException baru kelas dengan pesan kesalahan yang ditentukan dan referensi ke pengecualian dalam yang merupakan penyebab pengecualian ini.

CustomAttributeFormatException()

Sumber:
CustomAttributeFormatException.cs
Sumber:
CustomAttributeFormatException.cs
Sumber:
CustomAttributeFormatException.cs

Menginisialisasi instans CustomAttributeFormatException baru kelas dengan properti default.

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

Keterangan

Konstruktor ini menginisialisasi instans CustomAttributeFormatException dengan string pesan kosong dan pengecualian akar penyebab diatur ke null.

Konstruktor ini mengatur properti Exception objek sebagai berikut:

Properti Nilai
InnerException null
Message String kosong ("").

Berlaku untuk

CustomAttributeFormatException(String)

Sumber:
CustomAttributeFormatException.cs
Sumber:
CustomAttributeFormatException.cs
Sumber:
CustomAttributeFormatException.cs

Menginisialisasi instans CustomAttributeFormatException baru kelas dengan pesan yang ditentukan.

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)

Parameter

message
String

Pesan yang menunjukkan alasan pengecualian ini dilemparkan.

Keterangan

Konstruktor ini menetapkan properti objek Pengecualian sebagai berikut:

Properti Nilai
InnerException null

Lihat juga

Berlaku untuk

CustomAttributeFormatException(SerializationInfo, StreamingContext)

Sumber:
CustomAttributeFormatException.cs
Sumber:
CustomAttributeFormatException.cs
Sumber:
CustomAttributeFormatException.cs

Perhatian

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

Menginisialisasi instans CustomAttributeFormatException baru kelas dengan serialisasi dan informasi konteks yang ditentukan.

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)

Parameter

info
SerializationInfo

Data untuk serialisasi atau deserialisasi atribut kustom.

context
StreamingContext

Sumber dan tujuan untuk atribut kustom.

Atribut

Berlaku untuk

CustomAttributeFormatException(String, Exception)

Sumber:
CustomAttributeFormatException.cs
Sumber:
CustomAttributeFormatException.cs
Sumber:
CustomAttributeFormatException.cs

Menginisialisasi instans CustomAttributeFormatException baru kelas dengan pesan kesalahan yang ditentukan dan referensi ke pengecualian dalam yang merupakan penyebab pengecualian ini.

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)

Parameter

message
String

Pesan kesalahan yang menjelaskan alasan pengecualian.

inner
Exception

Pengecualian yang merupakan penyebab pengecualian saat ini. inner Jika parameter bukan null, pengecualian saat ini dimunculkan dalam catch blok yang menangani pengecualian dalam.

Keterangan

Pengecualian yang dilemparkan sebagai hasil langsung dari pengecualian sebelumnya harus menyertakan referensi ke pengecualian sebelumnya dalam InnerException properti . Properti InnerException mengembalikan nilai yang sama yang diteruskan ke konstruktor, atau null jika InnerException properti tidak menyediakan nilai pengecualian dalam ke konstruktor.

Tabel berikut ini memperlihatkan nilai properti awal untuk instans CustomAttributeFormatException.

Properti Nilai
InnerException Pengecualian inner .
Message String pesan kesalahan.

Lihat juga

Berlaku untuk