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