简体   繁体   中英

Async: How to break on exact line of code that has thrown the exception?

Say I have the following code:

async void buttonClick(object sender, RoutedEventArgs e)
{
    await nested1();
}

async Task nested1()
{
    await nested2();
}

async Task nested2()
{
    await nested3();
}

async Task nested3()
{
    await Task.Delay(1000);
    throw new Exception("Die");  // <-- I want Visual Studio to break on this line
}

How can I make Visual Studio break on the indicated line only when the exception is unhandled ?


Normally when the exception is thrown, Visual Studio will break here in App.gics:

在此输入图像描述

If I then enable "Just my code" in the debugger options, it will break here instead:

在此输入图像描述

Getting close. If I then check System.Exception under the "Thrown" column in the Exceptions window (Ctrl+Alt+E), it will break exactly where I want:

在此输入图像描述

but now Visual Studio will break on all thrown exceptions, not just unhandled ones . Is there any way to get Visual Studio to break at the most logical line of code only for unhandled exceptions, just like it would in regular non-async code? If this behavior is not possible, then:

  • Why is it not possible?
  • How can I identify the line of code that has thrown the exception, whether that be a throw statement of my own code , or a framework method call that has thrown an exception?

I've used 3 nested functions here in this example to emphasize that my code may be complex with many branches and nested method calls, and identifying the problematic line of code is difficult if Visual Studio doesn't break on the innermost line of code.

I think I may have discovered the answer to my question.

First, I uncheck System.Exception under the "Thrown" column in the exceptions window (Ctrl+Alt+E). I do this because I don't want Visual Studio to break on all exceptions, only unhandled ones.

Second, I keep "Just my code" enabled in the debugger options.

Now, when the debugger breaks, it will break here:

在此输入图像描述

as per the screenshot in my question. But if I inspect the call stack:

在此输入图像描述

I can actually see where the exception originated from (in nested3() , line 46). If I click this entry in the call stack window, Visual Studio will jump to the correct line, and the "Locals" window will even show me the values of local variables in that frame. Cool! I think this is what I wanted.

It's not possible.

Why is it not possible?

Because it's not done yet. async is still getting better tooling support with every release, and I do expect this behavior to be added sooner or later.

How can I identify the line of code that has thrown the exception, whether that be a throw statement of my own code, or a framework method call that has thrown an exception?

Visual Studio 2013 does have the ability to view asynchronous causality stacks in the debugger . If you want similar behavior at runtime, then you can use my async diagnostics package .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM