XsltCompileException コンストラクター

定義

XsltCompileException クラスの新しいインスタンスを初期化します。

オーバーロード

XsltCompileException()

XsltCompileException クラスの新しいインスタンスを初期化します。

XsltCompileException(String)

指定したエラー メッセージを使用して、XsltCompileException クラスの新しいインスタンスを初期化します。

XsltCompileException(SerializationInfo, StreamingContext)
古い.

SerializationInfo オブジェクトおよび StreamingContext オブジェクトの情報を使用して、XsltCompileException クラスの新しいインスタンスを初期化します。

XsltCompileException(String, Exception)

指定されたエラー メッセージと、この例外の原因である内部例外への参照を使用して、XsltCompileException クラスの新しいインスタンスを初期化します。

XsltCompileException(Exception, String, Int32, Int32)

XsltCompileException クラスの新しいインスタンスを初期化します。

XsltCompileException()

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

XsltCompileException クラスの新しいインスタンスを初期化します。

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

適用対象

XsltCompileException(String)

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

指定したエラー メッセージを使用して、XsltCompileException クラスの新しいインスタンスを初期化します。

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)

パラメーター

message
String

エラーを説明するメッセージ。

適用対象

XsltCompileException(SerializationInfo, StreamingContext)

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

注意事項

This API supports obsolete formatter-based serialization. It should not be called or extended by application code.

SerializationInfo オブジェクトおよび StreamingContext オブジェクトの情報を使用して、XsltCompileException クラスの新しいインスタンスを初期化します。

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)

パラメーター

info
SerializationInfo

SerializationInfo のすべてのプロパティを格納している XsltCompileException オブジェクト。

context
StreamingContext

コンテキスト情報を格納している StreamingContext オブジェクト。

属性

適用対象

XsltCompileException(String, Exception)

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

指定されたエラー メッセージと、この例外の原因である内部例外への参照を使用して、XsltCompileException クラスの新しいインスタンスを初期化します。

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)

パラメーター

message
String

エラーを説明するメッセージ。

innerException
Exception

現在の例外の原因である例外。または、内部例外を指定しない場合は null

適用対象

XsltCompileException(Exception, String, Int32, Int32)

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

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)

パラメーター

inner
Exception

XsltCompileException をスローした Exception

sourceUri
String

スタイル シートの位置パス。

lineNumber
Int32

スタイル シートで発生したエラーの位置を示す行番号。

linePosition
Int32

スタイル シートで発生したエラーの位置を示す行番号。

適用対象