KeyNotFoundException Constructeurs
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Initialise une nouvelle instance de la classe KeyNotFoundException.
Surcharges
KeyNotFoundException() |
Initialise une nouvelle instance de la classe KeyNotFoundException à l’aide des valeurs de propriété par défaut. |
KeyNotFoundException(String) |
Initialise une nouvelle instance de la classe KeyNotFoundException avec le message d'erreur spécifié. |
KeyNotFoundException(SerializationInfo, StreamingContext) |
Obsolète.
Initialise une nouvelle instance de la classe KeyNotFoundException avec des données sérialisées. |
KeyNotFoundException(String, Exception) |
Initialise une nouvelle instance de la classe KeyNotFoundException avec le message d’erreur spécifié et une référence à l’exception interne ayant provoqué cette exception. |
KeyNotFoundException()
- Source:
- KeyNotFoundException.cs
- Source:
- KeyNotFoundException.cs
- Source:
- KeyNotFoundException.cs
Initialise une nouvelle instance de la classe KeyNotFoundException à l’aide des valeurs de propriété par défaut.
public:
KeyNotFoundException();
public KeyNotFoundException ();
Public Sub New ()
Remarques
Ce constructeur initialise la Message propriété du nouveau instance dans un message fourni par le système qui décrit l’erreur, par exemple « La clé donnée n’était pas présente dans le dictionnaire ». Ce message prend en compte la culture système actuelle.
Le tableau suivant indique les valeurs initiales des propriétés d'une instance de la classe KeyNotFoundException.
Propriété | Valeur |
---|---|
InnerException | null . |
Message | Chaîne du message d'erreur localisé. |
S’applique à
KeyNotFoundException(String)
- Source:
- KeyNotFoundException.cs
- Source:
- KeyNotFoundException.cs
- Source:
- KeyNotFoundException.cs
Initialise une nouvelle instance de la classe KeyNotFoundException avec le message d'erreur spécifié.
public:
KeyNotFoundException(System::String ^ message);
public KeyNotFoundException (string message);
public KeyNotFoundException (string? message);
new System.Collections.Generic.KeyNotFoundException : string -> System.Collections.Generic.KeyNotFoundException
Public Sub New (message As String)
Paramètres
- message
- String
Message décrivant l'erreur.
Remarques
Le contenu du paramètre message
doit être compréhensible par les utilisateurs. L'appelant de ce constructeur est requis pour vérifier que cette chaîne a été localisée pour la culture système actuelle.
Le tableau suivant indique les valeurs initiales des propriétés d'une instance de la classe KeyNotFoundException.
Propriété | Valeur |
---|---|
InnerException | null . |
Message | Chaîne du message d'erreur localisé. |
S’applique à
KeyNotFoundException(SerializationInfo, StreamingContext)
- Source:
- KeyNotFoundException.cs
- Source:
- KeyNotFoundException.cs
- Source:
- KeyNotFoundException.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 KeyNotFoundException avec des données sérialisées.
protected:
KeyNotFoundException(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);
protected KeyNotFoundException (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 KeyNotFoundException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new System.Collections.Generic.KeyNotFoundException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.Collections.Generic.KeyNotFoundException
[<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.Collections.Generic.KeyNotFoundException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.Collections.Generic.KeyNotFoundException
Protected Sub New (info As SerializationInfo, context As StreamingContext)
Paramètres
- info
- SerializationInfo
SerializationInfo qui contient les données d'objet sérialisées concernant l'exception levée.
- context
- StreamingContext
StreamingContext qui contient des informations contextuelles relatives à la source ou à la destination.
- Attributs
Remarques
Ce constructeur est appelé lors de la désérialisation afin de reconstituer l'objet exception transmis sur un flux. Pour plus d’informations, consultez Sérialisation XML et SOAP.
S’applique à
KeyNotFoundException(String, Exception)
- Source:
- KeyNotFoundException.cs
- Source:
- KeyNotFoundException.cs
- Source:
- KeyNotFoundException.cs
Initialise une nouvelle instance de la classe KeyNotFoundException avec le message d’erreur spécifié et une référence à l’exception interne ayant provoqué cette exception.
public:
KeyNotFoundException(System::String ^ message, Exception ^ innerException);
public KeyNotFoundException (string message, Exception innerException);
public KeyNotFoundException (string? message, Exception? innerException);
new System.Collections.Generic.KeyNotFoundException : string * Exception -> System.Collections.Generic.KeyNotFoundException
Public Sub New (message As String, innerException As Exception)
Paramètres
- message
- String
Message d'erreur qui explique la raison de l'exception.
- innerException
- 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 indique les valeurs initiales des propriétés d'une instance de la classe KeyNotFoundException.
Propriété | Value |
---|---|
InnerException | La référence à l'exception interne. |
Message | Chaîne du message d'erreur localisé. |