UriFormatException Oluşturucular

Tanım

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

Aşırı Yüklemeler

UriFormatException()

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

UriFormatException(String)

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

UriFormatException(SerializationInfo, StreamingContext)
Geçersiz.

Belirtilen SerializationInfo ve StreamingContext örneklerinden sınıfının yeni bir örneğini UriFormatException başlatır.

UriFormatException(String, Exception)

Sınıfın UriFormatException yeni bir örneğini belirtilen bir hata iletisiyle ve bu özel durumun nedeni olan iç özel duruma başvuruyla başlatır.

UriFormatException()

Kaynak:
UriFormatException.cs
Kaynak:
UriFormatException.cs
Kaynak:
UriFormatException.cs

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

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

Açıklamalar

Parametresiz oluşturucu, tüm alanları olarak ayarlanmış şekilde sınıfının yeni bir örneğini UriFormatExceptionnullbaşlatır.

Şunlara uygulanır

UriFormatException(String)

Kaynak:
UriFormatException.cs
Kaynak:
UriFormatException.cs
Kaynak:
UriFormatException.cs

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

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

Parametreler

textString
String

Hata iletisi dizesi.

Açıklamalar

UriFormatException oluşturucu, özelliğinin UriFormatExceptionMessage değerine textStringayarlandığı örneği başlatır.

Şunlara uygulanır

UriFormatException(SerializationInfo, StreamingContext)

Kaynak:
UriFormatException.cs
Kaynak:
UriFormatException.cs
Kaynak:
UriFormatException.cs

Dikkat

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

Belirtilen SerializationInfo ve StreamingContext örneklerinden sınıfının yeni bir örneğini UriFormatException başlatır.

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

Parametreler

serializationInfo
SerializationInfo

SerializationInfo Yeni UriFormatExceptionseri hale getirmek için gereken bilgileri içeren bir .

streamingContext
StreamingContext

StreamingContext Yeni UriFormatExceptionile ilişkili serileştirilmiş akışın kaynağını içeren bir .

Öznitelikler

Açıklamalar

Bu oluşturucu sınıfı için arabirimini UriFormatException uygularISerializable.

Ayrıca bkz.

Şunlara uygulanır

UriFormatException(String, Exception)

Kaynak:
UriFormatException.cs
Kaynak:
UriFormatException.cs
Kaynak:
UriFormatException.cs

Sınıfın UriFormatException yeni bir örneğini belirtilen bir hata iletisiyle ve bu özel durumun nedeni olan iç özel duruma başvuruyla başlatır.

public:
 UriFormatException(System::String ^ textString, Exception ^ e);
public UriFormatException (string textString, Exception e);
public UriFormatException (string? textString, Exception? e);
new UriFormatException : string * Exception -> UriFormatException
Public Sub New (textString As String, e As Exception)

Parametreler

textString
String

Özel durumu açıklayan ileti. Bu yapıcının çağırıcısı, bu dizenin geçerli sistem kültürü için yerelleştirilmiş olduğundan emin olmak için gereklidir.

e
Exception

Geçerli özel durumun nedeni olan özel durum. innerException 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, UriFormatException öğesinin bir örneği için başlangıç özellik değerlerini gösterir.

Özellik Değer
InnerException null.
Message message öğesinde belirtilen hata iletisi dizesi.

Ayrıca bkz.

Şunlara uygulanır