OutOfMemoryException 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 OutOfMemoryException.
Surcharges
OutOfMemoryException() |
Initialise une nouvelle instance de la classe OutOfMemoryException. |
OutOfMemoryException(String) |
Initialise une nouvelle instance de la classe OutOfMemoryException avec un message d'erreur spécifié. |
OutOfMemoryException(SerializationInfo, StreamingContext) |
Obsolète.
Initialise une nouvelle instance de la classe OutOfMemoryException avec des données sérialisées. |
OutOfMemoryException(String, Exception) |
Initialise une nouvelle instance de la classe OutOfMemoryException avec un message d'erreur spécifié et une référence à l'exception interne ayant provoqué cette exception. |
OutOfMemoryException()
- Source:
- OutOfMemoryException.cs
- Source:
- OutOfMemoryException.cs
- Source:
- OutOfMemoryException.cs
Initialise une nouvelle instance de la classe OutOfMemoryException.
public:
OutOfMemoryException();
public OutOfMemoryException ();
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 « La mémoire n’était pas suffisante pour continuer l’exécution du programme ». Ce message prend en compte la culture système actuelle.
Le tableau suivant affiche les valeurs de propriété initiales pour une instance de OutOfMemoryException.
Propriété | Valeur |
---|---|
InnerException |
null . |
Message | Chaîne du message d'erreur localisé. |
S’applique à
OutOfMemoryException(String)
- Source:
- OutOfMemoryException.cs
- Source:
- OutOfMemoryException.cs
- Source:
- OutOfMemoryException.cs
Initialise une nouvelle instance de la classe OutOfMemoryException avec un message d'erreur spécifié.
public:
OutOfMemoryException(System::String ^ message);
public OutOfMemoryException (string message);
public OutOfMemoryException (string? message);
new OutOfMemoryException : string -> OutOfMemoryException
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 OutOfMemoryException.
Propriété | Valeur |
---|---|
InnerException | Référence Null (Nothing en Visual Basic). |
Message | Chaîne du message d'erreur. |
S’applique à
OutOfMemoryException(SerializationInfo, StreamingContext)
- Source:
- OutOfMemoryException.cs
- Source:
- OutOfMemoryException.cs
- Source:
- OutOfMemoryException.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 OutOfMemoryException avec des données sérialisées.
protected:
OutOfMemoryException(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);
protected OutOfMemoryException (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 OutOfMemoryException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new OutOfMemoryException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> OutOfMemoryException
[<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 OutOfMemoryException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> OutOfMemoryException
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. Pour plus d’informations, consultez Sérialisation XML et SOAP.
Voir aussi
S’applique à
OutOfMemoryException(String, Exception)
- Source:
- OutOfMemoryException.cs
- Source:
- OutOfMemoryException.cs
- Source:
- OutOfMemoryException.cs
Initialise une nouvelle instance de la classe OutOfMemoryException avec un message d'erreur spécifié et une référence à l'exception interne ayant provoqué cette exception.
public:
OutOfMemoryException(System::String ^ message, Exception ^ innerException);
public OutOfMemoryException (string message, Exception innerException);
public OutOfMemoryException (string? message, Exception? innerException);
new OutOfMemoryException : string * Exception -> OutOfMemoryException
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 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 qui est levée en conséquence directe d'une exception précédente peut contenir une référence à l'exception précédente 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 OutOfMemoryException.
Propriété | Value |
---|---|
InnerException | La référence à l'exception interne. |
Message | Chaîne du message d'erreur. |