RuntimeBinderInternalCompilerException Constructeurs

Définition

Initialise une nouvelle instance de la classe RuntimeBinderInternalCompilerException avec un message fourni par le système qui décrit l'erreur.

Surcharges

RuntimeBinderInternalCompilerException()

Initialise une nouvelle instance de la classe RuntimeBinderInternalCompilerException avec un message fourni par le système qui décrit l'erreur.

RuntimeBinderInternalCompilerException(String)

Initialise une nouvelle instance de la classe RuntimeBinderInternalCompilerException avec un message spécifié qui décrit l'erreur.

RuntimeBinderInternalCompilerException(SerializationInfo, StreamingContext)
Obsolète.

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

RuntimeBinderInternalCompilerException(String, Exception)

Initialise une nouvelle instance de la classe RuntimeBinderInternalCompilerException qui comporte un message d'erreur spécifié et une référence à l'exception interne à l'origine de cette exception.

RuntimeBinderInternalCompilerException()

Source:
RuntimeBinderInternalCompilerException.cs
Source:
RuntimeBinderInternalCompilerException.cs
Source:
RuntimeBinderInternalCompilerException.cs

Initialise une nouvelle instance de la classe RuntimeBinderInternalCompilerException avec un message fourni par le système qui décrit l'erreur.

public:
 RuntimeBinderInternalCompilerException();
public RuntimeBinderInternalCompilerException ();
Public Sub New ()

Remarques

Ce constructeur initialise la Message propriété du nouveau instance dans un message fourni par le système qui décrit l’erreur, par exemple « DefaultMessageDisplayedByParameterlessCtorWriterMustSupply » Ce message prend en compte la culture système actuelle.

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

Propriété Valeur
InnerException null.
Message Chaîne du message d'erreur localisé.

Voir aussi

S’applique à

RuntimeBinderInternalCompilerException(String)

Source:
RuntimeBinderInternalCompilerException.cs
Source:
RuntimeBinderInternalCompilerException.cs
Source:
RuntimeBinderInternalCompilerException.cs

Initialise une nouvelle instance de la classe RuntimeBinderInternalCompilerException avec un message spécifié qui décrit l'erreur.

public:
 RuntimeBinderInternalCompilerException(System::String ^ message);
public RuntimeBinderInternalCompilerException (string message);
public RuntimeBinderInternalCompilerException (string? message);
new Microsoft.CSharp.RuntimeBinder.RuntimeBinderInternalCompilerException : string -> Microsoft.CSharp.RuntimeBinder.RuntimeBinderInternalCompilerException
Public Sub New (message As String)

Paramètres

message
String

Message décrivant l'exception. L'appelant de ce constructeur est requis pour vérifier que cette chaîne a été localisée pour la culture système actuelle.

Remarques

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

Propriété Valeur
InnerException null.
Message Chaîne de message d'erreur spécifiée dans message.

Voir aussi

S’applique à

RuntimeBinderInternalCompilerException(SerializationInfo, StreamingContext)

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

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

RuntimeBinderInternalCompilerException(String, Exception)

Source:
RuntimeBinderInternalCompilerException.cs
Source:
RuntimeBinderInternalCompilerException.cs
Source:
RuntimeBinderInternalCompilerException.cs

Initialise une nouvelle instance de la classe RuntimeBinderInternalCompilerException qui comporte un message d'erreur spécifié et une référence à l'exception interne à l'origine de cette exception.

public:
 RuntimeBinderInternalCompilerException(System::String ^ message, Exception ^ innerException);
public RuntimeBinderInternalCompilerException (string message, Exception innerException);
public RuntimeBinderInternalCompilerException (string? message, Exception? innerException);
new Microsoft.CSharp.RuntimeBinder.RuntimeBinderInternalCompilerException : string * Exception -> Microsoft.CSharp.RuntimeBinder.RuntimeBinderInternalCompilerException
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 qui est la cause de l'exception actuelle, ou référence null si aucune exception interne n'est spécifiée.

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 RuntimeBinderInternalCompilerException.

Propriété Valeur
InnerException null.
Message Chaîne de message d'erreur spécifiée dans message.

S’applique à