The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
2answers
19 views

Flattening of AggregateExceptions for Processing

I'm running into a few issues where I call flatten on an AggregateException, but inside there is still ANOTHER AggregateException! This obviously means that they are being propagated up the chain and ...
2
votes
1answer
1k views

TaskCanceledException in AggregateException does not contain stack trace

I am using the Task Parallel Library to run a task which - when cancelled - throws the OperationCanceledException, which is then caught using the AggregateException, as follows. The ...
2
votes
0answers
2k views

How to fix a System.AggregateException when using Parallel.For loops in C#

I have a loop in C# that looks like this: for (int level = 0; level < numLevels; level++){ for (int y = 0; y < ysize; y++){ for (int x = 0; x < xsize; x++){ ...
0
votes
0answers
606 views

Unhandled AggregateException on Tasks Continuation thrown on another OS

I'm getting a strange behavior in a winForms application while testing to see how it responds on different OS. The long running operation where the unhandled AggregateException is thrown ( when ...