ReflectionTypeLoadException 생성자

정의

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

오버로드

Name Description
ReflectionTypeLoadException(Type[], Exception[])

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

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

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

ReflectionTypeLoadException(Type[], Exception[])

Source:
ReflectionTypeLoadException.cs
Source:
ReflectionTypeLoadException.cs
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 의 배열입니다. 이 배열에는 null 참조(Visual Basic Nothing) 값이 포함될 수 있습니다.

exceptions
Exception[]

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

적용 대상

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

Source:
ReflectionTypeLoadException.cs
Source:
ReflectionTypeLoadException.cs
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 의 배열입니다. 이 배열에는 null 참조(Visual Basic Nothing) 값이 포함될 수 있습니다.

exceptions
Exception[]

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

message
String

String 예외가 throw된 이유를 설명하는 것입니다.

적용 대상