XsltException 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 XsltException
.
Surcharges
XsltException() |
Initialise une nouvelle instance de la classe XsltException. |
XsltException(String) |
Initialise une nouvelle instance de la classe XsltException avec un message d'erreur spécifié. |
XsltException(SerializationInfo, StreamingContext) |
Obsolète.
Initialise une nouvelle instance de la classe |
XsltException(String, Exception) |
Initialise une nouvelle instance de la classe |
XsltException()
- Source:
- XsltException.cs
- Source:
- XsltException.cs
- Source:
- XsltException.cs
Initialise une nouvelle instance de la classe XsltException.
public:
XsltException();
public XsltException ();
Public Sub New ()
S’applique à
XsltException(String)
- Source:
- XsltException.cs
- Source:
- XsltException.cs
- Source:
- XsltException.cs
Initialise une nouvelle instance de la classe XsltException avec un message d'erreur spécifié.
public:
XsltException(System::String ^ message);
public XsltException (string message);
new System.Xml.Xsl.XsltException : string -> System.Xml.Xsl.XsltException
Public Sub New (message As String)
Paramètres
- message
- String
Message décrivant l'erreur.
S’applique à
XsltException(SerializationInfo, StreamingContext)
- Source:
- XsltException.cs
- Source:
- XsltException.cs
- Source:
- XsltException.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 XsltException
à l'aide des informations contenues dans les objets SerializationInfo et StreamingContext.
protected:
XsltException(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);
protected XsltException (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 XsltException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new System.Xml.Xsl.XsltException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.Xml.Xsl.XsltException
[<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 System.Xml.Xsl.XsltException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.Xml.Xsl.XsltException
Protected Sub New (info As SerializationInfo, context As StreamingContext)
Paramètres
- info
- SerializationInfo
Objet SerializationInfo
contenant toutes les propriétés de XsltException
.
- context
- StreamingContext
Objet StreamingContext
.
- Attributs
S’applique à
XsltException(String, Exception)
- Source:
- XsltException.cs
- Source:
- XsltException.cs
- Source:
- XsltException.cs
Initialise une nouvelle instance de la classe XsltException
.
public:
XsltException(System::String ^ message, Exception ^ innerException);
public XsltException (string message, Exception? innerException);
public XsltException (string message, Exception innerException);
new System.Xml.Xsl.XsltException : string * Exception -> System.Xml.Xsl.XsltException
Public Sub New (message As String, innerException As Exception)
Paramètres
- message
- String
Description de la condition d'erreur.
- innerException
- Exception
Exception qui a levé le XsltException
éventuel. Cette valeur peut être null
.