SafeArrayTypeMismatchException 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 SafeArrayTypeMismatchException
.
Surcharges
SafeArrayTypeMismatchException() |
Initialise une nouvelle instance de la classe |
SafeArrayTypeMismatchException(String) |
Initialise une nouvelle instance de la classe |
SafeArrayTypeMismatchException(SerializationInfo, StreamingContext) |
Obsolète.
Initialise une nouvelle instance de la classe |
SafeArrayTypeMismatchException(String, Exception) |
Initialise une nouvelle instance de la classe SafeArrayTypeMismatchException avec un message d'erreur spécifié et une référence à l'exception interne ayant provoqué cette exception. |
SafeArrayTypeMismatchException()
Initialise une nouvelle instance de la classe SafeArrayTypeMismatchException
avec les valeurs par défaut.
public:
SafeArrayTypeMismatchException();
public SafeArrayTypeMismatchException ();
Public Sub New ()
Remarques
SafeArrayTypeMismatchException
hérite de SystemException. Ce constructeur définit les propriétés de l’objet Exception comme indiqué dans le tableau suivant.
Propriété | Valeur |
---|---|
InnerException |
null . |
Message | Chaîne de message d’erreur localisée. |
S’applique à
SafeArrayTypeMismatchException(String)
Initialise une nouvelle instance de la classe SafeArrayTypeMismatchException
avec le message spécifié.
public:
SafeArrayTypeMismatchException(System::String ^ message);
public SafeArrayTypeMismatchException (string message);
public SafeArrayTypeMismatchException (string? message);
new System.Runtime.InteropServices.SafeArrayTypeMismatchException : string -> System.Runtime.InteropServices.SafeArrayTypeMismatchException
Public Sub New (message As String)
Paramètres
- message
- String
Message qui indique la raison de l'exception.
Remarques
SafeArrayTypeMismatchException
hérite de SystemException. Ce constructeur définit les propriétés de l’objet Exception comme indiqué dans le tableau suivant.
Propriété | Valeur |
---|---|
InnerException |
null . |
Message | message |
S’applique à
SafeArrayTypeMismatchException(SerializationInfo, StreamingContext)
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 SafeArrayTypeMismatchException
à partir de données de sérialisation.
protected:
SafeArrayTypeMismatchException(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);
protected SafeArrayTypeMismatchException (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 SafeArrayTypeMismatchException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new System.Runtime.InteropServices.SafeArrayTypeMismatchException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.Runtime.InteropServices.SafeArrayTypeMismatchException
[<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.Runtime.InteropServices.SafeArrayTypeMismatchException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.Runtime.InteropServices.SafeArrayTypeMismatchException
Protected Sub New (info As SerializationInfo, context As StreamingContext)
Paramètres
- info
- SerializationInfo
Objet qui contient les données sérialisées de l'objet.
- context
- StreamingContext
Informations contextuelles sur la source ou la destination.
- Attributs
Exceptions
info
a la valeur null
.
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 System.Runtime.Serialization.
SafeArrayTypeMismatchException
hérite de SystemException.
S’applique à
SafeArrayTypeMismatchException(String, Exception)
Initialise une nouvelle instance de la classe SafeArrayTypeMismatchException avec un message d'erreur spécifié et une référence à l'exception interne ayant provoqué cette exception.
public:
SafeArrayTypeMismatchException(System::String ^ message, Exception ^ inner);
public SafeArrayTypeMismatchException (string message, Exception inner);
public SafeArrayTypeMismatchException (string? message, Exception? inner);
new System.Runtime.InteropServices.SafeArrayTypeMismatchException : string * Exception -> System.Runtime.InteropServices.SafeArrayTypeMismatchException
Public Sub New (message As String, inner As Exception)
Paramètres
- message
- String
Message d'erreur qui explique la raison de l'exception.
- inner
- Exception
Exception ayant provoqué l'exception actuelle. Si le paramètre inner
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 SafeArrayTypeMismatchException.
Propriété | Value |
---|---|
InnerException | La référence à l'exception interne. |
Message | Chaîne du message d'erreur. |