XsltException コンストラクター

定義

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

オーバーロード

XsltException()

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

XsltException(String)

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

XsltException(SerializationInfo, StreamingContext)
古い.

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

XsltException(String, Exception)

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

XsltException()

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

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

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

適用対象

XsltException(String)

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

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

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)

パラメーター

message
String

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

適用対象

XsltException(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 オブジェクトの情報を使用して、XsltException クラスの新しいインスタンスを初期化します。

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)

パラメーター

info
SerializationInfo

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

context
StreamingContext

StreamingContext オブジェクト。

属性

適用対象

XsltException(String, Exception)

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

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)

パラメーター

message
String

エラー状態の説明。

innerException
Exception

XsltException をスローした Exception (存在する場合)。 この値は、null の場合もあります。

適用対象