TypeDescriptor.GetReflectionType 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
리플렉션을 수행하는 데 사용할 수 있는 Type을 반환합니다.
오버로드
GetReflectionType(Object) |
지정된 개체로 리플렉션을 수행하는 데 사용할 수 있는 Type 를 반환합니다. |
GetReflectionType(Type) |
지정된 클래스 형식으로 리플렉션을 수행하는 데 사용할 수 있는 Type 를 반환합니다. |
GetReflectionType(Object)
- Source:
- TypeDescriptor.cs
- Source:
- TypeDescriptor.cs
- Source:
- TypeDescriptor.cs
지정된 개체로 리플렉션을 수행하는 데 사용할 수 있는 Type 를 반환합니다.
public:
static Type ^ GetReflectionType(System::Object ^ instance);
public static Type GetReflectionType (object instance);
static member GetReflectionType : obj -> Type
Public Shared Function GetReflectionType (instance As Object) As Type
매개 변수
- instance
- Object
대상 구성 요소의 인스턴스입니다.
반환
지정된 개체에 대한 Type 입니다.
예외
instance
은 null
입니다.
설명
메서드는 GetReflectionType 메서드의 하위 수준 버전입니다 GetTypeDescriptor . GetReflectionType 는 일반적으로 사용자 지정 형식 설명자를 배치할 수 없는 경우 개체에 대해 표준 리플렉션을 수행하는 데 사용됩니다.
추가 정보
적용 대상
GetReflectionType(Type)
- Source:
- TypeDescriptor.cs
- Source:
- TypeDescriptor.cs
- Source:
- TypeDescriptor.cs
지정된 클래스 형식으로 리플렉션을 수행하는 데 사용할 수 있는 Type 를 반환합니다.
public:
static Type ^ GetReflectionType(Type ^ type);
public static Type GetReflectionType (Type type);
static member GetReflectionType : Type -> Type
Public Shared Function GetReflectionType (type As Type) As Type
매개 변수
반환
지정된 클래스의 Type 입니다.
예외
type
이(가) null
인 경우
설명
메서드는 GetReflectionType 메서드의 하위 수준 버전입니다 GetTypeDescriptor . GetReflectionType 는 일반적으로 사용자 지정 형식 설명자를 배치할 수 없는 경우 클래스에 대해 표준 리플렉션을 수행하는 데 사용됩니다.
추가 정보
적용 대상
.NET