ReflectionTypeLoadException 생성자

정의

ReflectionTypeLoadException 클래스의 새 인스턴스를 초기화합니다.

오버로드

ReflectionTypeLoadException(Type[], Exception[])

지정된 클래스 및 이와 관련된 예외를 사용하여 ReflectionTypeLoadException 클래스의 새 인스턴스를 초기화합니다.

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

지정된 클래스, 관련 예외 및 그에 대한 설명을 사용하여 ReflectionTypeLoadException 클래스의 새 인스턴스를 초기화합니다.

ReflectionTypeLoadException(Type[], Exception[])

지정된 클래스 및 이와 관련된 예외를 사용하여 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[]

클래스 로더에서 throw된 예외를 포함하는 Exception 형식의 배열입니다. classes 배열의 null 참조(Visual Basic에서는 Nothing) 값은 이 exceptions 배열의 예외와 일치합니다.

적용 대상

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

지정된 클래스, 관련 예외 및 그에 대한 설명을 사용하여 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[]

클래스 로더에서 throw된 예외를 포함하는 Exception 형식의 배열입니다. classes 배열의 null 참조(Visual Basic에서는 Nothing) 값은 이 exceptions 배열의 예외와 일치합니다.

message
String

에외가 throw된 원인을 설명하는 String입니다.

적용 대상