ContextMarshalException Oluşturucular

Tanım

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

Aşırı Yüklemeler

ContextMarshalException()

Sınıfın ContextMarshalException yeni bir örneğini varsayılan özelliklerle başlatır.

ContextMarshalException(String)

Belirtilen hata iletisiyle sınıfının yeni bir örneğini ContextMarshalException başlatır.

ContextMarshalException(SerializationInfo, StreamingContext)
Geçersiz.

ContextMarshalException sınıfının yeni bir örneğini serileştirilmiş verilerle başlatır.

ContextMarshalException(String, Exception)

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

ContextMarshalException()

Kaynak:
Context.cs
Kaynak:
Context.cs
Kaynak:
Context.cs

Sınıfın ContextMarshalException yeni bir örneğini varsayılan özelliklerle başlatır.

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

Açıklamalar

Aşağıdaki tablo, ContextMarshalException öğesinin bir örneği için başlangıç özellik değerlerini gösterir.

Özellik Değer
InnerException null.
Message Boş dize ("").

Şunlara uygulanır

ContextMarshalException(String)

Kaynak:
Context.cs
Kaynak:
Context.cs
Kaynak:
Context.cs

Belirtilen hata iletisiyle sınıfının yeni bir örneğini ContextMarshalException başlatır.

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

Parametreler

message
String

Özel durumun nedenini açıklayan hata iletisi.

Açıklamalar

Aşağıdaki tablo, ContextMarshalException öğesinin bir örneği için başlangıç özellik değerlerini gösterir.

Özellik Değer
InnerException null.
Message Hata iletisi dizesi.

Şunlara uygulanır

ContextMarshalException(SerializationInfo, StreamingContext)

Kaynak:
Context.cs
Kaynak:
Context.cs
Kaynak:
Context.cs

Dikkat

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

ContextMarshalException sınıfının yeni bir örneğini serileştirilmiş verilerle başlatır.

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

Parametreler

info
SerializationInfo

Oluşturulan özel durumla ilgili serileştirilmiş nesne verilerini içeren SerializationInfo.

context
StreamingContext

Kaynak veya hedefle ilgili bağlamsal bilgileri içeren StreamingContext.

Öznitelikler

Şunlara uygulanır

ContextMarshalException(String, Exception)

Kaynak:
Context.cs
Kaynak:
Context.cs
Kaynak:
Context.cs

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

public:
 ContextMarshalException(System::String ^ message, Exception ^ inner);
public ContextMarshalException (string? message, Exception? inner);
public ContextMarshalException (string message, Exception inner);
new ContextMarshalException : string * Exception -> ContextMarshalException
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 değilsenull, geçerli özel durum iç özel durumu işleyen bir catch blokta oluşturulur.

Açıklamalar

Bir önceki özel durumun doğrudan bir sonucu olarak oluşturulan bir özel durum, InnerException özelliğindeki önceki özel duruma başvuru içermelidir. InnerException özelliği, oluşturucuya iletilen aynı değeri ya da InnerException özelliği oluşturucuya iç özel durum değeri sağlamıyorsa null değerini döndürür.

Aşağıdaki tablo, ContextMarshalException öğesinin bir örneği için başlangıç özellik değerlerini gösterir.

Özellik Değer
InnerException İç özel duruma başvuru.
Message Hata iletisi dizesi.

Şunlara uygulanır