ReflectionTypeLoadException 构造函数

定义

初始化 ReflectionTypeLoadException 类的新实例。

重载

ReflectionTypeLoadException(Type[], Exception[])

用给定类及其关联的异常初始化 ReflectionTypeLoadException 类的新实例。

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

用给定类、与此类关联的异常以及异常说明初始化 ReflectionTypeLoadException 类的新实例。

ReflectionTypeLoadException(Type[], Exception[])

Source:
ReflectionTypeLoadException.cs
Source:
ReflectionTypeLoadException.cs
Source:
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 类型的数组,其中包含在模块中定义并加载的类。 该数组可以包含空引用(在 Visual Basic 中为 Nothing)值。

exceptions
Exception[]

Exception 类型的数组,其中包含由类加载程序引发的异常。 classes 数组中的空引用(在 Visual Basic 中为 Nothing)值与此 exceptions 数组中的异常保持对应。

适用于

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

Source:
ReflectionTypeLoadException.cs
Source:
ReflectionTypeLoadException.cs
Source:
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 类型的数组,其中包含在模块中定义并加载的类。 该数组可以包含空引用(在 Visual Basic 中为 Nothing)值。

exceptions
Exception[]

Exception 类型的数组,其中包含由类加载程序引发的异常。 classes 数组中的空引用(在 Visual Basic 中为 Nothing)值与此 exceptions 数组中的异常保持对应。

message
String

描述此异常的引发原因的 String

适用于