Microsoft MVP성태의 닷넷 이야기
오류 유형: 103. System.Reflection.TargetException [링크 복사], [링크+제목 복사],
조회: 27110
글쓴 사람
정성태 (techsharer at outlook.com)
홈페이지
첨부 파일

System.Reflection.TargetException

특수한 경우이긴 하지만. 기록을 남기는 차원에서. ^^

상황은 다음과 같습니다.

public class BaseA
{
    public int Field
    {
        get; set;
    }
}

public class DerivedB : BaseA {}

public class DerivedC : BaseA {}

위와 같은 구조에서 BaseA.Field를 접근하는 데 Reflection을 이용해서 다음과 같이 사용을 합니다.

static void Main(string[] args)
{
    DerivedB db = new DerivedB();
    Console.WriteLine(GetFieldValue(db));

    DerivedC dc = new DerivedC();
    Console.WriteLine(GetFieldValue(dc));
}

static PropertyInfo propertyInfo;
static int GetFieldValue(object instance)
{
    if (propertyInfo == null)
    {
        propertyInfo = instance.GetType().GetProperty("Field", System.Reflection.BindingFlags.Instance | System.Reflection.BindingFlags.Public);
    }

    return (int)propertyInfo.GetValue(instance, null);
}

상황에 따라서, 해당 어셈블리를 직접 참조할 수 없어서 public 필드에 대한 접근조차도 Reflection을 이용해야 할 필요가 있습니다. 어쨌든, 위의 코드는 PropertyInfo를 캐쉬해서 정상적으로 대부분의 코드에서 잘 사용할 수 있었는데요.

예상치 않게, 특정 클래스에 대해 다음과 같은 오류가 발생했습니다.

System.Reflection.TargetException occurred
  Message=Object does not match target type.
  Source=mscorlib
  StackTrace:
       at System.Reflection.RuntimeMethodInfo.CheckConsistency(Object target)
       at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture, Boolean skipVisibilityChecks)
       at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
       at System.Reflection.RuntimePropertyInfo.GetValue(Object obj, BindingFlags invokeAttr, Binder binder, Object[] index, CultureInfo culture)
       at System.Reflection.RuntimePropertyInfo.GetValue(Object obj, Object[] index)
       at Jennifer40.Profiler.Interception.SoapHttpClientProtocolInvoke2000_Preprocess(Object thisObject, Boolean& bEndProcess, String arg1, Object[] arg2)
  InnerException: 

갑자기 ^^; GetProperty를 사용한 Reflection에 대한 급(!) 회의감이 들었습니다.

위의 예에서는 문제를 간략화했기 때문에 분석이 간단하지만, 건드릴 수 없는 고객사의 복잡한 웹 애플리케이션 코드와 제 코드가 뒤섞여서 발생하는 상황이라면 저 정도의 오류 메시지로 문제 분석할 엄두가 나질 않습니다. ^^;

(하지만, 삶은 계속되므로!) 문제를 분석하는 중... TargetException이 발생하는 클래스들의 공통점이 발견되었습니다. 바로, 해당 Field에 대해서 상속받은 클래스에서 재정의를 한 경우였습니다.

바로 이렇게, virtual/override 로 했거나,

public class BaseA
{
    public virtual int Field { get; set; }
}

public class DerivedB : BaseA
{
    public override int Field { get; set; }
}

public class DerivedC : BaseA
{
    public override int Field { get; set; }
}

또는, new로 했거나,

public class BaseA
{
    public int Field { get; set; }
}

public class DerivedB : BaseA
{
    public new int Field { get; set; }
}

public class DerivedC : BaseA
{
    public new int Field { get; set; }
}

그런 경우에, 아래와 같이 instance.GetType().GetProperty로 반환받으면 상속받은 클래스의 필드가 나오게 됩니다.

instance.GetType().GetProperty("Field", System.Reflection.BindingFlags.Instance | System.Reflection.BindingFlags.Public);

따라서, DerivedB.Field에 대한 PropertyInfo를 캐쉬하고 있었는데 DerivedC 인스턴스가 들어오니 System.Reflection.TargetException 예외가 발생한 것입니다.

이를 해결하려면?

만약, 기반 클래스의 Field 접근이 원하는 값을 반환해 준다면 다음과 같이 명시적인 타입을 지정해 줄 수 있습니다.

Type targetType = ...[BaseA 타입 구하는 코드]...;
targetType.GetProperty(...);

그렇지 않다면, static 캐쉬를 포기해야 합니다. 그냥 인스턴스 변수에 저장해 놓고 그때그때의 타입에 따라 매번 GetProperty를 구해서 처리해야 합니다. (위의 경우에는 속성만 예를 들었지만, 일반 메서드의 경우에도 동일하게 적용되겠죠!)

결국은, ... 이번 문제는 아는 게 병이 된 좋은 사례라는. ^^;



[이 토픽에 대해서 여러분들과 의견을 공유하고 싶습니다. 틀리거나 미흡한 부분 또는 의문 사항이 있으시면 언제든 댓글 남겨주십시오.]







[최초 등록일: ]
[최종 수정일: 6/23/2021]

Creative Commons License
이 저작물은 크리에이티브 커먼즈 코리아 저작자표시-비영리-변경금지 2.0 대한민국 라이센스에 따라 이용하실 수 있습니다.
by SeongTae Jeong, mailto:techsharer at outlook.com

비밀번호

댓글 작성자
 




... [136]  137  138  139  140  141  142  143  144  145  146  147  148  149  150  ...
NoWriterDateCnt.TitleFile(s)
1651정성태3/11/201424686.NET Framework: 427. C# 컴파일러는 변수를 초기화시키지 않을까요?
1650정성태3/6/201425462VC++: 75. Visual C++ 컴파일 오류 - Cannot use __try in functions that require object unwinding [1]파일 다운로드1
1649정성태3/5/201420102기타: 44. BTN 스토어 앱 개인정보 보호 정책 안내
1648정성태3/5/201420486개발 환경 구성: 218. 스토어 앱 인증 실패 - no privacy statement
1647정성태3/3/201421732오류 유형: 224. 스카이드라이브 비정상 종료 - Error 0x80040A41: No error description available
1646정성태3/3/201430959오류 유형: 223. Microsoft-Windows-DistributedCOM 10016 이벤트 로그 에러 [1]
1645정성태3/1/201420766기타: 43. 마이크로소프트 MVP들이 모여 전국 세미나를 엽니다.
1644정성태2/26/201427704.NET Framework: 426. m3u8 스트리밍 파일을 윈도우 8.1 Store App에서 재생하는 방법파일 다운로드1
1643정성태2/25/201423522오류 유형: 222. 윈도우 8 Store App - APPX1204 SignTool Error: An unexpected internal error has occurred [1]
1642정성태2/25/201428109Windows: 91. 한글이 포함된 사용자 프로파일 경로 변경 [2]
1641정성태2/24/201424991기타: 42. 클래스 설명 [5]
1640정성태2/24/201445958.NET Framework: 425. C# - VLC(ActiveX) 컨트롤을 레지스트리 등록 없이 사용하는 방법 [15]
1639정성태2/23/201421676기타: 41. BBS 스토어 앱 개인정보 보호 정책 안내
1638정성태2/18/201444326Windows: 90. 실행 파일로부터 관리자 요구 권한을 제거하는 방법(부제: 크랙 버전을 보다 안전하게 실행하는 방법) [8]
1637정성태2/14/201425459Windows: 89. 컴퓨터를 껐는데도 어느 순간 자동으로 켜진다면? - 두 번째 이야기
1636정성태2/14/201421340Windows: 88. Hyper-V가 설치된 컴퓨터의 윈도우 백업 설정
1635정성태2/14/201422278오류 유형: 221. SharePoint - System.InvalidOperationException: The farm is unavailable.
1634정성태2/14/201422431.NET Framework: 424. C# - CSharpCodeProvider로 컴파일한 메서드의 실행이 일반 메서드보다 더 빠르다? [1]파일 다운로드1
1633정성태2/13/201425276오류 유형: 220. 2014년 2월 13일 이후로 Visual Studio 2010 Macro가 동작하지 않는다면? [3]
1632정성태2/12/201443258.NET Framework: 423. C#에서 DirectShow를 이용한 미디어 재생 [2]파일 다운로드1
1631정성태2/11/201422294개발 환경 구성: 217. Realtek 사운드 장치에서 재생되는 오디오를 GraphEditor로 녹음하는 방법
1630정성태2/5/201422596개발 환경 구성: 216. Hyper-V에 올려진 윈도우 XP VM에서 24bit 컬러 및 ClearType 활성화하는 방법
1629정성태2/5/201432400개발 환경 구성: 215. DOS batch - 하나의 .bat 파일에서 다중 .bat 파일을 (비동기로) 실행하는 방법 [1]
1628정성태2/4/201433740Windows: 87. 윈도우 8.1에서 .NET 3.5 설치가 안된다면? [2]
1627정성태2/4/201428854개발 환경 구성: 214. SQL Server Reporting Services를 이용해 간단한 리포트 제작하는 방법
1626정성태2/4/201420827Windows: 86. 윈도우 8.1의 Skydrive 내용이 동기화가 안된다면?
... [136]  137  138  139  140  141  142  143  144  145  146  147  148  149  150  ...