Partager via


EntryPointNotFoundException Constructeurs

Définition

Initialise une nouvelle instance de la classe EntryPointNotFoundException.

Surcharges

EntryPointNotFoundException()

Initialise une nouvelle instance de la classe EntryPointNotFoundException.

EntryPointNotFoundException(String)

Initialise une nouvelle instance de la classe EntryPointNotFoundException avec un message d'erreur spécifié.

EntryPointNotFoundException(SerializationInfo, StreamingContext)
Obsolète.

Initialise une nouvelle instance de la classe EntryPointNotFoundException avec des données sérialisées.

EntryPointNotFoundException(String, Exception)

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

EntryPointNotFoundException()

Source:
EntryPointNotFoundException.cs
Source:
EntryPointNotFoundException.cs
Source:
EntryPointNotFoundException.cs

Initialise une nouvelle instance de la classe EntryPointNotFoundException.

public:
 EntryPointNotFoundException();
public EntryPointNotFoundException ();
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 point d’entrée est introuvable ». Ce message prend en compte la culture système actuelle.

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

Propriété Valeur
InnerException Référence Null (Nothing en Visual Basic).
Message Chaîne du message d'erreur localisé.

S’applique à

EntryPointNotFoundException(String)

Source:
EntryPointNotFoundException.cs
Source:
EntryPointNotFoundException.cs
Source:
EntryPointNotFoundException.cs

Initialise une nouvelle instance de la classe EntryPointNotFoundException avec un message d'erreur spécifié.

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

Paramètres

message
String

Message d'erreur qui explique la raison de l'exception.

Remarques

Le contenu de 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 EntryPointNotFoundException.

Propriété Valeur
InnerException Référence Null (Nothing en Visual Basic).
Message Chaîne du message d'erreur.

S’applique à

EntryPointNotFoundException(SerializationInfo, StreamingContext)

Source:
EntryPointNotFoundException.cs
Source:
EntryPointNotFoundException.cs
Source:
EntryPointNotFoundException.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 EntryPointNotFoundException avec des données sérialisées.

protected:
 EntryPointNotFoundException(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);
protected EntryPointNotFoundException (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 EntryPointNotFoundException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new EntryPointNotFoundException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> EntryPointNotFoundException
[<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 EntryPointNotFoundException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> EntryPointNotFoundException
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

Remarques

Ce constructeur est appelé lors de la désérialisation afin de reconstituer l'objet exception transmis sur un flux.

S’applique à

EntryPointNotFoundException(String, Exception)

Source:
EntryPointNotFoundException.cs
Source:
EntryPointNotFoundException.cs
Source:
EntryPointNotFoundException.cs

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

public:
 EntryPointNotFoundException(System::String ^ message, Exception ^ inner);
public EntryPointNotFoundException (string? message, Exception? inner);
public EntryPointNotFoundException (string message, Exception inner);
new EntryPointNotFoundException : string * Exception -> EntryPointNotFoundException
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 (Nothing en Visual Basic), 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 même valeur que celle qui a été passée dans le constructeur ou une référence Null (Nothing en Visual Basic), si la propriété InnerException ne fournit pas la valeur de l'exception interne au constructeur.

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

Propriété Value
InnerException La référence à l'exception interne.
Message Chaîne du message d'erreur.

Voir aussi

S’applique à