File size: 464 Bytes
fab29d7
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
using System;
using System.Threading.Tasks;

namespace VersOne.Epub.Utils
{
    internal static class TaskExtensionMethods
    {
        public static T ExecuteAndUnwrapAggregateException<T>(this Task<T> task)
        {
            try
            {
                return task.Result;
            }
            catch (AggregateException aggregateException)
            {
                throw aggregateException.InnerException;
            }
        }
    }
}