ReflectionTypeLoadException コンストラクター

定義

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

オーバーロード

ReflectionTypeLoadException(Type[], Exception[])

クラスと、そのクラスに関連付けられた例外を指定して、ReflectionTypeLoadException クラスの新しいインスタンスを初期化します。

ReflectionTypeLoadException(Type[], Exception[], String)

クラス、そのクラスに関連付けられた例外、例外の説明を指定して、ReflectionTypeLoadException クラスの新しいインスタンスを初期化します。

ReflectionTypeLoadException(Type[], Exception[])

ソース:
ReflectionTypeLoadException.cs
ソース:
ReflectionTypeLoadException.cs
ソース:
ReflectionTypeLoadException.cs

クラスと、そのクラスに関連付けられた例外を指定して、ReflectionTypeLoadException クラスの新しいインスタンスを初期化します。

public:
 ReflectionTypeLoadException(cli::array <Type ^> ^ classes, cli::array <Exception ^> ^ exceptions);
public ReflectionTypeLoadException (Type[] classes, Exception[] exceptions);
public ReflectionTypeLoadException (Type?[]? classes, Exception?[]? exceptions);
public ReflectionTypeLoadException (Type[]? classes, Exception?[]? exceptions);
new System.Reflection.ReflectionTypeLoadException : Type[] * Exception[] -> System.Reflection.ReflectionTypeLoadException
Public Sub New (classes As Type(), exceptions As Exception())

パラメーター

classes
Type[]

モジュールで定義され、読み込まれたクラスを保持している Type 型の配列。 この配列には null 参照 (Visual Basic の場合は Nothing) 値が含まれることがあります。

exceptions
Exception[]

クラス ローダーがスローした例外を保持している Exception 型の配列。 classes 配列の null 参照 (Visual Basic の場合は Nothing) 値は、この exceptions 配列の例外に合わせて並べられます。

適用対象

ReflectionTypeLoadException(Type[], Exception[], String)

ソース:
ReflectionTypeLoadException.cs
ソース:
ReflectionTypeLoadException.cs
ソース:
ReflectionTypeLoadException.cs

クラス、そのクラスに関連付けられた例外、例外の説明を指定して、ReflectionTypeLoadException クラスの新しいインスタンスを初期化します。

public:
 ReflectionTypeLoadException(cli::array <Type ^> ^ classes, cli::array <Exception ^> ^ exceptions, System::String ^ message);
public ReflectionTypeLoadException (Type[] classes, Exception[] exceptions, string message);
public ReflectionTypeLoadException (Type?[]? classes, Exception?[]? exceptions, string? message);
public ReflectionTypeLoadException (Type[]? classes, Exception?[]? exceptions, string? message);
new System.Reflection.ReflectionTypeLoadException : Type[] * Exception[] * string -> System.Reflection.ReflectionTypeLoadException
Public Sub New (classes As Type(), exceptions As Exception(), message As String)

パラメーター

classes
Type[]

モジュールで定義され、読み込まれたクラスを保持している Type 型の配列。 この配列には null 参照 (Visual Basic の場合は Nothing) 値が含まれることがあります。

exceptions
Exception[]

クラス ローダーがスローした例外を保持している Exception 型の配列。 classes 配列の null 参照 (Visual Basic の場合は Nothing) 値は、この exceptions 配列の例外に合わせて並べられます。

message
String

この例外がスローされた原因を説明する文字列。String

適用対象