UriFormatException Constructeurs

Définition

Initialise une nouvelle instance de la classe UriFormatException.

Surcharges

UriFormatException()

Initialise une nouvelle instance de la classe UriFormatException.

UriFormatException(String)

Initialise une nouvelle instance de la classe UriFormatException avec le message spécifié.

UriFormatException(SerializationInfo, StreamingContext)
Obsolète.

Initialise une nouvelle instance de la classe UriFormatException à partir des instances SerializationInfo et StreamingContext spécifiées.

UriFormatException(String, Exception)

Initialise une nouvelle instance de la classe UriFormatException avec un message d'erreur spécifié et une référence à l'exception interne ayant provoqué cette exception.

UriFormatException()

Source:
UriFormatException.cs
Source:
UriFormatException.cs
Source:
UriFormatException.cs

Initialise une nouvelle instance de la classe UriFormatException.

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

Remarques

Le constructeur sans paramètre initialise une nouvelle instance de la UriFormatException classe avec tous les champs définis sur null.

S’applique à

UriFormatException(String)

Source:
UriFormatException.cs
Source:
UriFormatException.cs
Source:
UriFormatException.cs

Initialise une nouvelle instance de la classe UriFormatException avec le message spécifié.

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

Paramètres

textString
String

Chaîne du message d'erreur.

Remarques

Le constructeur UriFormatException initialise le UriFormatException instance avec la Message propriété définie sur la valeur de textString.

S’applique à

UriFormatException(SerializationInfo, StreamingContext)

Source:
UriFormatException.cs
Source:
UriFormatException.cs
Source:
UriFormatException.cs

Attention

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

Initialise une nouvelle instance de la classe UriFormatException à partir des instances SerializationInfo et StreamingContext spécifiées.

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)

Paramètres

serializationInfo
SerializationInfo

SerializationInfo qui contient les informations requises pour sérialiser la nouvelle UriFormatException.

streamingContext
StreamingContext

StreamingContext qui contient la source du flux sérialisé associé au nouveau UriFormatException.

Attributs

Remarques

Ce constructeur implémente l’interface ISerializable pour la UriFormatException classe .

Voir aussi

S’applique à

UriFormatException(String, Exception)

Source:
UriFormatException.cs
Source:
UriFormatException.cs
Source:
UriFormatException.cs

Initialise une nouvelle instance de la classe UriFormatException avec un message d'erreur spécifié et une référence à l'exception interne ayant provoqué cette exception.

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)

Paramètres

textString
String

Message décrivant l'exception. L'appelant de ce constructeur est requis pour vérifier que cette chaîne a été localisée pour la culture système actuelle.

e
Exception

Exception ayant provoqué l'exception actuelle. Si le paramètre innerException n'est pas null, l'exception actuelle est levée dans un bloc catch qui gère l'exception interne.

Remarques

Une exception levée en conséquence directe d'une exception précédente doit contenir une référence à celle-ci dans la propriété InnerException. La propriété InnerException retourne la valeur passée au constructeur ou la valeur null si la propriété InnerException ne fournit pas la valeur d'exception interne au constructeur.

Le tableau suivant affiche les valeurs de propriété initiales pour une instance de UriFormatException.

Propriété Valeur
InnerException null.
Message Chaîne de message d'erreur spécifiée dans message.

Voir aussi

S’applique à