ReflectionTypeLoadException Konstruktoren

Definition

Initialisiert eine neue Instanz der ReflectionTypeLoadException-Klasse.

Überlädt

ReflectionTypeLoadException(Type[], Exception[])

Initialisiert eine neue Instanz der ReflectionTypeLoadException-Klasse mit den angegebenen Klassen und den zugeordneten Ausnahmen.

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

Initialisiert eine neue Instanz der ReflectionTypeLoadException-Klasse mit den angegebenen Klassen, deren zugeordneten Ausnahmen und Beschreibungen der Ausnahmen.

ReflectionTypeLoadException(Type[], Exception[])

Quelle:
ReflectionTypeLoadException.cs
Quelle:
ReflectionTypeLoadException.cs
Quelle:
ReflectionTypeLoadException.cs

Initialisiert eine neue Instanz der ReflectionTypeLoadException-Klasse mit den angegebenen Klassen und den zugeordneten Ausnahmen.

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())

Parameter

classes
Type[]

Ein Array vom Typ Type mit den Klassen, die im Modul definiert und geladen wurden. Dieses Array kann NULL-Verweise (Nothing in Visual Basic) enthalten.

exceptions
Exception[]

Ein Array vom Typ Exception mit den Ausnahmen, die durch das Klassenladeprogramm ausgelöst wurden. Die Nullverweise (Nothing in Visual Basic) im classes-Array entsprechen den Ausnahmen in diesem exceptions-Array.

Gilt für:

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

Quelle:
ReflectionTypeLoadException.cs
Quelle:
ReflectionTypeLoadException.cs
Quelle:
ReflectionTypeLoadException.cs

Initialisiert eine neue Instanz der ReflectionTypeLoadException-Klasse mit den angegebenen Klassen, deren zugeordneten Ausnahmen und Beschreibungen der Ausnahmen.

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)

Parameter

classes
Type[]

Ein Array vom Typ Type mit den Klassen, die im Modul definiert und geladen wurden. Dieses Array kann NULL-Verweise (Nothing in Visual Basic) enthalten.

exceptions
Exception[]

Ein Array vom Typ Exception mit den Ausnahmen, die durch das Klassenladeprogramm ausgelöst wurden. Die Nullverweise (Nothing in Visual Basic) im classes-Array entsprechen den Ausnahmen in diesem exceptions-Array.

message
String

String mit einer Beschreibung der Ursache für das Auslösen der Ausnahme.

Gilt für: