Skip to content

Commit b5de1cc

Browse files
committed
Implemented a new Submission client using HttpClient and general cleanup
1 parent 46799d0 commit b5de1cc

17 files changed

+649
-1172
lines changed

src/Exceptionless.Portable/Extensions/ClientExtensions.cs

Lines changed: 0 additions & 225 deletions
This file was deleted.
Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,11 @@
11
using System;
22
using System.Collections.Generic;
3-
using System.Linq;
4-
using System.Threading.Tasks;
5-
using Exceptionless.Threading.Tasks;
63

74
namespace Exceptionless.Extensions {
85
internal static class EnumerableExtensions {
96
public static void AddRange<T>(this ICollection<T> list, IEnumerable<T> range) {
107
foreach (var r in range)
118
list.Add(r);
129
}
13-
14-
public static Task ForEachAsync<T>(this IEnumerable<T> source, Func<T, Task> body) {
15-
return Task.Factory.WhenAll(source.Select(body));
16-
}
1710
}
1811
}

0 commit comments

Comments
 (0)