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 ブロックで現在の例外が発生します。

適用対象