XamlInternalException 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 XamlInternalException.
Surcharges
XamlInternalException() |
Initialise une nouvelle instance de la classe XamlInternalException avec un message fourni par le système qui décrit l'erreur. |
XamlInternalException(String) |
Initialise une nouvelle instance de la classe XamlInternalException avec un message spécifié qui décrit l'erreur. |
XamlInternalException(SerializationInfo, StreamingContext) |
Initialise une nouvelle instance de la classe XamlInternalException avec des données sérialisées. |
XamlInternalException(String, Exception) |
Initialise une nouvelle instance de la classe XamlInternalException avec un message d'erreur spécifié et une référence à l'exception interne ayant provoqué cette exception. |
XamlInternalException()
Initialise une nouvelle instance de la classe XamlInternalException avec un message fourni par le système qui décrit l'erreur.
public:
XamlInternalException();
public XamlInternalException ();
Public Sub New ()
S’applique à
XamlInternalException(String)
Initialise une nouvelle instance de la classe XamlInternalException avec un message spécifié qui décrit l'erreur.
public:
XamlInternalException(System::String ^ message);
public XamlInternalException (string message);
new System.Xaml.XamlInternalException : string -> System.Xaml.XamlInternalException
Public Sub New (message As String)
Paramètres
- message
- String
Message décrivant l'exception.
S’applique à
XamlInternalException(SerializationInfo, StreamingContext)
Initialise une nouvelle instance de la classe XamlInternalException avec des données sérialisées.
protected:
XamlInternalException(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);
protected XamlInternalException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new System.Xaml.XamlInternalException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.Xaml.XamlInternalException
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.
S’applique à
XamlInternalException(String, Exception)
Initialise une nouvelle instance de la classe XamlInternalException avec un message d'erreur spécifié et une référence à l'exception interne ayant provoqué cette exception.
public:
XamlInternalException(System::String ^ message, Exception ^ innerException);
public XamlInternalException (string message, Exception innerException);
new System.Xaml.XamlInternalException : string * Exception -> System.Xaml.XamlInternalException
Public Sub New (message As String, innerException As Exception)
Paramètres
- message
- String
Message décrivant l'exception.
- innerException
- Exception
Exception ayant provoqué l'exception actuelle. Si le paramètre innerException
n'est pas null
, l'exception actuelle est levée dans un bloc catch
qui gère l'exception interne.