ReflectionTypeLoadException 생성자
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
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
입니다.
적용 대상
.NET