BadImageFormatException 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 BadImageFormatException.
Surcharges
BadImageFormatException() |
Initialise une nouvelle instance de la classe BadImageFormatException. |
BadImageFormatException(String) |
Initialise une nouvelle instance de la classe BadImageFormatException avec un message d'erreur spécifié. |
BadImageFormatException(SerializationInfo, StreamingContext) |
Obsolète.
Initialise une nouvelle instance de la classe BadImageFormatException avec des données sérialisées. |
BadImageFormatException(String, Exception) |
Initialise une nouvelle instance de la classe BadImageFormatException avec un message d'erreur spécifié et une référence à l'exception interne ayant provoqué cette exception. |
BadImageFormatException(String, String) |
Initialise une nouvelle instance de la classe BadImageFormatException avec un message d'erreur et un nom de fichier spécifiés. |
BadImageFormatException(String, String, Exception) |
Initialise une nouvelle instance de la classe BadImageFormatException avec un message d'erreur spécifié et une référence à l'exception interne ayant provoqué cette exception. |
BadImageFormatException()
- Source:
- BadImageFormatException.cs
- Source:
- BadImageFormatException.cs
- Source:
- BadImageFormatException.cs
Initialise une nouvelle instance de la classe BadImageFormatException.
public:
BadImageFormatException();
public BadImageFormatException ();
Public Sub New ()
Remarques
Ce constructeur initialise la Message propriété du nouveau instance à un message fourni par le système qui décrit l’erreur, par exemple « Le format de l’exécutable ou de la bibliothèque n’est pas valide ». Ce message prend en compte la culture système actuelle.
Le tableau suivant affiche les valeurs de propriété initiales pour une instance de BadImageFormatException.
Propriété | Valeur |
---|---|
InnerException | Référence Null (Nothing en Visual Basic). |
Message | Chaîne du message d'erreur localisé. |
S’applique à
BadImageFormatException(String)
- Source:
- BadImageFormatException.cs
- Source:
- BadImageFormatException.cs
- Source:
- BadImageFormatException.cs
Initialise une nouvelle instance de la classe BadImageFormatException avec un message d'erreur spécifié.
public:
BadImageFormatException(System::String ^ message);
public BadImageFormatException (string message);
public BadImageFormatException (string? message);
new BadImageFormatException : string -> BadImageFormatException
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 affiche les valeurs de propriété initiales pour une instance de BadImageFormatException.
Propriété | Valeur |
---|---|
InnerException | Référence Null (Nothing en Visual Basic). |
Message | Chaîne du message d'erreur. |
S’applique à
BadImageFormatException(SerializationInfo, StreamingContext)
- Source:
- BadImageFormatException.cs
- Source:
- BadImageFormatException.cs
- Source:
- BadImageFormatException.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 BadImageFormatException avec des données sérialisées.
protected:
BadImageFormatException(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);
protected BadImageFormatException (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 BadImageFormatException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new BadImageFormatException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> BadImageFormatException
[<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 BadImageFormatException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> BadImageFormatException
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.
S’applique à
BadImageFormatException(String, Exception)
- Source:
- BadImageFormatException.cs
- Source:
- BadImageFormatException.cs
- Source:
- BadImageFormatException.cs
Initialise une nouvelle instance de la classe BadImageFormatException avec un message d'erreur spécifié et une référence à l'exception interne ayant provoqué cette exception.
public:
BadImageFormatException(System::String ^ message, Exception ^ inner);
public BadImageFormatException (string message, Exception inner);
public BadImageFormatException (string? message, Exception? inner);
new BadImageFormatException : string * Exception -> BadImageFormatException
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 une référence 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 BadImageFormatException.
Propriété | Value |
---|---|
InnerException | La référence à l'exception interne. |
Message | Chaîne du message d'erreur. |
Voir aussi
S’applique à
BadImageFormatException(String, String)
- Source:
- BadImageFormatException.cs
- Source:
- BadImageFormatException.cs
- Source:
- BadImageFormatException.cs
Initialise une nouvelle instance de la classe BadImageFormatException avec un message d'erreur et un nom de fichier spécifiés.
public:
BadImageFormatException(System::String ^ message, System::String ^ fileName);
public BadImageFormatException (string message, string fileName);
public BadImageFormatException (string? message, string? fileName);
new BadImageFormatException : string * string -> BadImageFormatException
Public Sub New (message As String, fileName As String)
Paramètres
- message
- String
Message qui décrit l'erreur.
- fileName
- String
Nom complet du fichier comportant l’image non valide.
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.
Propriété | Valeur |
---|---|
FileName | Nom complet du fichier comportant l’image non valide. |
Message | Chaîne du message d'erreur. |
S’applique à
BadImageFormatException(String, String, Exception)
- Source:
- BadImageFormatException.cs
- Source:
- BadImageFormatException.cs
- Source:
- BadImageFormatException.cs
Initialise une nouvelle instance de la classe BadImageFormatException avec un message d'erreur spécifié et une référence à l'exception interne ayant provoqué cette exception.
public:
BadImageFormatException(System::String ^ message, System::String ^ fileName, Exception ^ inner);
public BadImageFormatException (string message, string fileName, Exception inner);
public BadImageFormatException (string? message, string? fileName, Exception? inner);
new BadImageFormatException : string * string * Exception -> BadImageFormatException
Public Sub New (message As String, fileName As String, inner As Exception)
Paramètres
- message
- String
Message d'erreur qui explique la raison de l'exception.
- fileName
- String
Nom complet du fichier comportant l’image non valide.
- 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 BadImageFormatException.
Propriété | Value |
---|---|
InnerException | La référence à l'exception interne. |
FileName | Nom complet du fichier comportant l’image non valide. |
Message | Chaîne du message d'erreur. |