PropertyException 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.
Surcharges
PropertyException(String) |
Initialise une nouvelle instance de la classe PropertyException avec la propriété qui a provoqué l’exception. |
PropertyException(String, String) |
Initialise une nouvelle instance de la classe PropertyException avec la propriété qui a provoqué l’exception et le texte du message d’erreur. |
PropertyException(String, String, Exception) |
Initialise une nouvelle instance de la classe PropertyException avec la propriété qui a provoqué l’exception, le texte du message d’erreur et l’exception interne. |
PropertyException(String)
Initialise une nouvelle instance de la classe PropertyException avec la propriété qui a provoqué l’exception.
public:
PropertyException(System::String ^ name);
public PropertyException (string name);
Public Sub New (name As String)
Paramètres
- name
- String
Nom de la propriété à l’origine de l’exception.
S’applique à
PropertyException(String, String)
Initialise une nouvelle instance de la classe PropertyException avec la propriété qui a provoqué l’exception et le texte du message d’erreur.
public:
PropertyException(System::String ^ message, System::String ^ name);
public PropertyException (string message, string name);
Public Sub New (message As String, name As String)
Paramètres
- message
- String
Texte du message d’erreur.
- name
- String
Nom de la propriété à l’origine de l’exception.
S’applique à
PropertyException(String, String, Exception)
Initialise une nouvelle instance de la classe PropertyException avec la propriété qui a provoqué l’exception, le texte du message d’erreur et l’exception interne.
public:
PropertyException(System::String ^ message, System::String ^ name, Exception ^ innerException);
public PropertyException (string message, string name, Exception innerException);
Public Sub New (message As String, name As String, innerException As Exception)
Paramètres
- message
- String
Texte du message d’erreur.
- name
- String
Nom de la propriété à l’origine de l’exception.
- innerException
- Exception
Exception interne.