Handling the AggregateException
Last week I showed you how you can use the AggregateException to apply consistent exception handling in batch operations. You can find that post here. Bart De Smet read that post and pointed out that I should check out the Handle method of the AggregateException. The Handle method As found in the MSDN documentation. Description Invokes a handler on each Exception contained by this AggregateException. Parameters System.Func<Exception, Boolean> predicate The predicate to execute for each exception. The predicate accepts as an argument the Exception to be processed and returns a Boolean to indicate whether the exception was handled. Remarks ...