XsltCompileException Constructeurs

Définition

Initialise une nouvelle instance de la classe XsltCompileException.

Surcharges

XsltCompileException()

Initialise une nouvelle instance de la classe XsltCompileException.

XsltCompileException(String)

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

XsltCompileException(SerializationInfo, StreamingContext)
Obsolète.

Initialise une nouvelle instance de la classe XsltCompileException à l'aide des informations contenues dans les objets SerializationInfo et StreamingContext.

XsltCompileException(String, Exception)

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

XsltCompileException(Exception, String, Int32, Int32)

Initialise une nouvelle instance de la classe XsltCompileException.

XsltCompileException()

Source:
XsltException.cs
Source:
XsltException.cs
Source:
XsltException.cs

Initialise une nouvelle instance de la classe XsltCompileException.

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

S’applique à

XsltCompileException(String)

Source:
XsltException.cs
Source:
XsltException.cs
Source:
XsltException.cs

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

public:
 XsltCompileException(System::String ^ message);
public XsltCompileException (string message);
new System.Xml.Xsl.XsltCompileException : string -> System.Xml.Xsl.XsltCompileException
Public Sub New (message As String)

Paramètres

message
String

Message décrivant l'erreur.

S’applique à

XsltCompileException(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 XsltCompileException à l'aide des informations contenues dans les objets SerializationInfo et StreamingContext.

protected:
 XsltCompileException(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);
protected XsltCompileException (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 XsltCompileException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new System.Xml.Xsl.XsltCompileException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.Xml.Xsl.XsltCompileException
[<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.XsltCompileException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.Xml.Xsl.XsltCompileException
Protected Sub New (info As SerializationInfo, context As StreamingContext)

Paramètres

info
SerializationInfo

Objet SerializationInfo contenant toutes les propriétés de XsltCompileException.

context
StreamingContext

Objet StreamingContext contenant les informations de contexte.

Attributs

S’applique à

XsltCompileException(String, Exception)

Source:
XsltException.cs
Source:
XsltException.cs
Source:
XsltException.cs

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

public:
 XsltCompileException(System::String ^ message, Exception ^ innerException);
public XsltCompileException (string message, Exception innerException);
new System.Xml.Xsl.XsltCompileException : string * Exception -> System.Xml.Xsl.XsltCompileException
Public Sub New (message As String, innerException As Exception)

Paramètres

message
String

Message décrivant l'erreur.

innerException
Exception

L'exception qui est la cause de l'exception actuelle ou null si aucune exception interne n'est spécifiée.

S’applique à

XsltCompileException(Exception, String, Int32, Int32)

Source:
XsltException.cs
Source:
XsltException.cs
Source:
XsltException.cs

Initialise une nouvelle instance de la classe XsltCompileException.

public:
 XsltCompileException(Exception ^ inner, System::String ^ sourceUri, int lineNumber, int linePosition);
public XsltCompileException (Exception inner, string sourceUri, int lineNumber, int linePosition);
new System.Xml.Xsl.XsltCompileException : Exception * string * int * int -> System.Xml.Xsl.XsltCompileException
Public Sub New (inner As Exception, sourceUri As String, lineNumber As Integer, linePosition As Integer)

Paramètres

inner
Exception

Exception qui a levé XsltCompileException.

sourceUri
String

Chemin d'accès de la feuille de style.

lineNumber
Int32

Numéro de la ligne indiquant l'endroit où l'erreur s'est produite dans la feuille de style.

linePosition
Int32

Position de ligne indiquant l'endroit où l'erreur s'est produite dans la feuille de style.

S’applique à