So what happens is this:
- Visual Studio breaks on (for me, as an end-user) valid Exception five async/await methods deep.
- This is behaviour that I like, because I can inspect state and see what is going on.
- Usually this line is marked yellow.
- When I press continue it will break again on every async/await in the upper stack. Marked as green, probably because the real stack is underneath, but that is my assumption.
- These last ones I want to prevent, as this means I have to press 5 times F5 to continue, while not giving me more information then I could have figured out by break 1.
Is there any way to prevent 4 without disabling 1?
Note: this is an ASP.NET MVC application and this can be i.e. a background Ajax call.