0

对 SetValue 使用属性反射时,该属性会引发 TargetInvocationException。但是,由于对 SetValue 的调用是调用,因此异常会被捕获并且不会在属性中进行处理。有没有办法处理属性中的目标异常并只在主程序中抛出它?

我希望这个 throw 就像我只是进行了一个方法调用,而不是一个调用。

编辑澄清:

我遇到的问题是,在反射类中,我收到一条调试消息,上面写着“用户代码未处理异常”。我必须“继续”调试会话,内部异常是“真正的”异常。这只是意料之中吗?我不想收到警告(我不想隐藏警告),我希望代码修复警告。

public class reflect
{
    private int _i;
    public int i
    {
        get { return _i; }
        set 
        { 
            try{throw new Exception("THROWN");}
            catch (Exception ex)
            { // Caught here ex.Message is "THROWN"
                throw ex; // Unhandled exception error DONT WANT THIS
            } 
        }
    }
}

class Program
{
    static void Main(string[] args)
    {
        reflect r = new reflect();
        try
        {
            r.GetType().GetProperty("i").SetValue(r, 3, null);
        }
        catch(Exception ex)
        { // Caught here, Message "Exception has been thrown by the target of an invocation"
            // InnerMessage "THROWN"
            // WANT THIS Exception, but I want the Message to be "THROWN"
        }
    }
}
4

2 回答 2

2

你需要InnerException

catch(Exception ex)
{
    if (ex.InnerException != null)
    {
        Console.WriteLine(ex.InnerException.Message);
    }
}

这并不特定于反射 - 它是由另一个引起的任何异常的一般模式。(TypeInitializationException例如。)

于 2014-06-26T20:45:43.237 回答
0

抱歉,还不能评论。两件事:1)你为什么先在你的反射课上抓住前任,然后又把它扔了?不过,这应该不是问题。2)我认为你得到了你的例外。检查“异常已被抛出”的内部异常。

于 2014-06-26T20:48:53.337 回答