言語

XamlInternalException コンストラクター

定義

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

オーバーロード

名前 説明
XamlInternalException()

エラーを説明するシステム指定のメッセージを使用して、XamlInternalException クラスの新しいインスタンスを初期化します。

XamlInternalException(String)

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

XamlInternalException(SerializationInfo, StreamingContext)

シリアル化されたデータを使用して、 XamlInternalException クラスの新しいインスタンスを初期化します。

XamlInternalException(String, Exception)

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

XamlInternalException()

エラーを説明するシステム指定のメッセージを使用して、XamlInternalException クラスの新しいインスタンスを初期化します。

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

適用対象

XamlInternalException(String)

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

public:
 XamlInternalException(System::String ^ message);
public XamlInternalException(string message);
new System.Xaml.XamlInternalException : string -> System.Xaml.XamlInternalException
Public Sub New (message As String)

パラメーター

message
String

例外を説明するメッセージ。

適用対象

XamlInternalException(SerializationInfo, StreamingContext)

シリアル化されたデータを使用して、 XamlInternalException クラスの新しいインスタンスを初期化します。

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)

パラメーター

info
SerializationInfo

シリアル化されたオブジェクト データを保持するオブジェクト。

context
StreamingContext

ソースまたは変換先に関するコンテキスト情報。

適用対象

XamlInternalException(String, Exception)

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

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)

パラメーター

message
String

例外を説明するメッセージ。

innerException
Exception

現在の例外の原因である例外。 innerException パラメーターがnullされていない場合、内部例外を処理するcatch ブロックで現在の例外が発生します。

適用対象