19 references to ExceptionAggregator
System.Core (19)
System\Linq\Parallel\Merging\DefaultMergeHelper.cs (1)
79
m_channelEnumerator =
ExceptionAggregator
.WrapQueryEnumerator(partitions[0], m_taskGroupState.CancellationState).GetEnumerator();
System\Linq\Parallel\QueryOperators\QueryOperator.cs (2)
136
return
ExceptionAggregator
.WrapEnumerable(opSequential, querySettings.CancellationState).GetEnumerator();
212
return
ExceptionAggregator
.WrapEnumerable(opSequentialWithCancelChecks, querySettings.CancellationState).ToArray();
System\Linq\Parallel\QueryOperators\Unary\ElementAtQueryOperator.cs (2)
139
result =
ExceptionAggregator
.WrapEnumerable(childWithCancelChecks, cancelState).ElementAtOrDefault(m_index);
145
result =
ExceptionAggregator
.WrapEnumerable(childWithCancelChecks, cancelState).ElementAt(m_index);
System\Linq\ParallelEnumerable.cs (14)
4435
ExceptionAggregator
.ThrowOCEorAggregateException(ex, settings.CancellationState);
4467
ExceptionAggregator
.ThrowOCEorAggregateException(ex, cancelState);
5457
return
ExceptionAggregator
.WrapEnumerable(childWithCancelChecks, settings.CancellationState)
5499
return
ExceptionAggregator
.WrapEnumerable(childWithCancelChecks, settings.CancellationState)
5500
.First(
ExceptionAggregator
.WrapFunc<TSource, bool>(predicate, settings.CancellationState));
5541
return
ExceptionAggregator
.WrapEnumerable(childWithCancelChecks,
5586
return
ExceptionAggregator
.WrapEnumerable(
5588
.FirstOrDefault(
ExceptionAggregator
.WrapFunc<TSource, bool>(predicate, settings.CancellationState));
5635
return
ExceptionAggregator
.WrapEnumerable(childWithCancelChecks, settings.CancellationState).Last();
5677
return
ExceptionAggregator
.WrapEnumerable(
5679
.Last(
ExceptionAggregator
.WrapFunc<TSource, bool>(predicate, settings.CancellationState));
5719
return
ExceptionAggregator
.WrapEnumerable(childWithCancelChecks, settings.CancellationState).LastOrDefault();
5760
return
ExceptionAggregator
.WrapEnumerable(
5762
.LastOrDefault(
ExceptionAggregator
.WrapFunc<TSource, bool>(predicate, settings.CancellationState));