AggregateException.Handle Method
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Invokes a handler on each Exception contained by this AggregateException object.
Assembly: mscorlib (in mscorlib.dll)
| Exception | Condition |
|---|---|
| ArgumentNullException | The predicate argument is null. |
| AggregateException | An exception contained by this AggregateException was not handled. |
Each invocation of the predicate returns true or false to indicate whether the Exception was handled. After all invocations, if any exceptions went unhandled, all unhandled exceptions will be put into a new AggregateException which will be thrown. Otherwise, the Handle method simply returns. If any invocation of the predicate throws an exception, it will halt the processing of any more exceptions and immediately propagate the thrown exception as-is.