CustomAttributeFormatException Oluşturucular

Tanım

CustomAttributeFormatException sınıfının yeni bir örneğini başlatır.

Aşırı Yüklemeler

CustomAttributeFormatException()

Varsayılan özelliklerle CustomAttributeFormatException sınıfının yeni bir örneğini başlatır.

CustomAttributeFormatException(String)

Belirtilen iletiyle CustomAttributeFormatException sınıfının yeni bir örneğini başlatır.

CustomAttributeFormatException(SerializationInfo, StreamingContext)
Geçersiz.

Belirtilen serileştirme ve bağlam bilgileriyle CustomAttributeFormatException sınıfının yeni bir örneğini başlatır.

CustomAttributeFormatException(String, Exception)

Belirtilen bir hata iletisi ve bu özel durumun nedeni olan iç özel duruma başvuru ile CustomAttributeFormatException sınıfının yeni bir örneğini başlatır.

CustomAttributeFormatException()

Kaynak:
CustomAttributeFormatException.cs
Kaynak:
CustomAttributeFormatException.cs
Kaynak:
CustomAttributeFormatException.cs

Varsayılan özelliklerle CustomAttributeFormatException sınıfının yeni bir örneğini başlatır.

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

Açıklamalar

Bu oluşturucu, boş bir ileti dizesiyle CustomAttributeFormatException örneğini başlatır ve kök neden özel durumu nullolarak ayarlanır.

Bu oluşturucu, Exception nesnesinin özelliklerini aşağıdaki gibi ayarlar:

Mülk Değer
InnerException sıfır
Message Boş dize ("").

Şunlara uygulanır

CustomAttributeFormatException(String)

Kaynak:
CustomAttributeFormatException.cs
Kaynak:
CustomAttributeFormatException.cs
Kaynak:
CustomAttributeFormatException.cs

Belirtilen iletiyle CustomAttributeFormatException sınıfının yeni bir örneğini başlatır.

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)

Parametreler

message
String

Bu özel durumun neden oluşturulduğuna ilişkin ileti.

Açıklamalar

Bu oluşturucu, Exception nesnesinin özelliklerini aşağıdaki gibi ayarlar:

Mülk Değer
InnerException null

Ayrıca bkz.

Şunlara uygulanır

CustomAttributeFormatException(SerializationInfo, StreamingContext)

Kaynak:
CustomAttributeFormatException.cs
Kaynak:
CustomAttributeFormatException.cs
Kaynak:
CustomAttributeFormatException.cs

Dikkat

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

Belirtilen serileştirme ve bağlam bilgileriyle CustomAttributeFormatException sınıfının yeni bir örneğini başlatır.

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)

Parametreler

info
SerializationInfo

Özel özniteliği seri hale getirme veya seri durumdan çıkarma verileri.

context
StreamingContext

Özel özniteliğin kaynağı ve hedefi.

Öznitelikler

Şunlara uygulanır

CustomAttributeFormatException(String, Exception)

Kaynak:
CustomAttributeFormatException.cs
Kaynak:
CustomAttributeFormatException.cs
Kaynak:
CustomAttributeFormatException.cs

Belirtilen bir hata iletisi ve bu özel durumun nedeni olan iç özel duruma başvuru ile CustomAttributeFormatException sınıfının yeni bir örneğini başlatır.

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)

Parametreler

message
String

Özel durumun nedenini açıklayan hata iletisi.

inner
Exception

Geçerli özel durumun nedeni olan özel durum. inner parametresi nulldeğilse, geçerli özel durum, iç özel durumu işleyen bir catch bloğunda oluşturulur.

Açıklamalar

Önceki bir özel durumun doğrudan sonucu olarak oluşan özel durum, InnerException özelliğindeki önceki özel duruma başvuru içermelidir. InnerException özelliği oluşturucuya geçirilen değeri döndürür veya InnerException özelliği oluşturucuya iç özel durum değeri sağlamazsa null.

Aşağıdaki tabloda, CustomAttributeFormatExceptionörneğinin ilk özellik değerleri gösterilmektedir.

Mülk Değer
InnerException inner özel durumu.
Message Hata iletisi dizesi.

Ayrıca bkz.

  • Exception
  • .NET'da özel durumları işleme ve oluşturma

Şunlara uygulanır