22 references to InnerExceptions
mscorlib (13)
system\AggregateException.cs (3)
315
while (backAsAggregate != null && backAsAggregate.
InnerExceptions
.Count == 1)
408
IList<Exception> currentInnerExceptions = exceptionsToFlatten[nDequeueIndex++].
InnerExceptions
;
470
return
InnerExceptions
.Count;
system\threading\Tasks\ConcurrentExclusiveSchedulerPair.cs (2)
234
Contract.Requires(faultedTask != null && faultedTask.IsFaulted && faultedTask.Exception.
InnerExceptions
.Count > 0,
241
cs.m_exceptions.AddRange(faultedTask.Exception.
InnerExceptions
);
system\threading\Tasks\Parallel.cs (5)
335
foreach (Exception exc in ae.
InnerExceptions
) exceptionQ.Enqueue(exc);
391
ThrowIfReducableToSingleOCE(aggExp.
InnerExceptions
, parallelOptions.CancellationToken);
1286
ThrowIfReducableToSingleOCE(aggExp.
InnerExceptions
, parallelOptions.CancellationToken);
1599
ThrowIfReducableToSingleOCE(aggExp.
InnerExceptions
, parallelOptions.CancellationToken);
3493
ThrowIfReducableToSingleOCE(aggExp.
InnerExceptions
, parallelOptions.CancellationToken);
system\threading\Tasks\Task.cs (2)
5300
exceptions = new List<Exception>(ex.
InnerExceptions
.Count);
5303
exceptions.AddRange(ex.
InnerExceptions
);
system\threading\Tasks\TaskExceptionHolder.cs (1)
116
foreach (Exception innerExp in flattenedAggExp.
InnerExceptions
)
System (1)
net\System\Net\WebSockets\WebSocketBase.cs (1)
1362
ReadOnlyCollection<Exception> unwrappedExceptions = aggregateException.Flatten().
InnerExceptions
;
System.Core (2)
System\Linq\Parallel\Scheduling\QueryTaskGroupState.cs (2)
119
for (int i = 0; i < flattenedAE.
InnerExceptions
.Count; i++)
121
OperationCanceledException oce = flattenedAE.
InnerExceptions
[i] as OperationCanceledException;
System.Data (1)
fx\src\data\System\Data\SqlClient\SqlUtil.cs (1)
158
Debug.Assert(ae.
InnerExceptions
.Count == 1, "There is more than one exception in AggregateException");
System.ServiceModel.Internals (4)
System\Runtime\ExceptionTrace.cs (1)
139
ReadOnlyCollection<Exception> innerExceptions = aggregateException.Flatten().
InnerExceptions
;
System\Runtime\Fx.cs (1)
227
ReadOnlyCollection<Exception> innerExceptions = ((AggregateException)exception).
InnerExceptions
;
System\Runtime\TaskExtensions.cs (2)
32
tcs.TrySetException(t.Exception.
InnerExceptions
);
74
tcs.TrySetException(t.Exception.
InnerExceptions
);
System.Web (1)
Util\SynchronizationHelper.cs (1)
186
tcs.TrySetException(t.Exception.
InnerExceptions
);