6 writes to m_innerExceptions
mscorlib (6)
system\AggregateException.cs (6)
47
m_innerExceptions
= new ReadOnlyCollection<Exception>(new Exception[0]);
58
m_innerExceptions
= new ReadOnlyCollection<Exception>(new Exception[0]);
77
m_innerExceptions
= new ReadOnlyCollection<Exception>(new Exception[] { innerException });
172
m_innerExceptions
= new ReadOnlyCollection<Exception>(exceptionsCopy);
251
m_innerExceptions
= new ReadOnlyCollection<Exception>(exceptionsCopy);
278
m_innerExceptions
= new ReadOnlyCollection<Exception>(innerExceptions);
8 references to m_innerExceptions
mscorlib (8)
system\AggregateException.cs (8)
300
Exception[] innerExceptions = new Exception[
m_innerExceptions
.Count];
301
m_innerExceptions
.CopyTo(innerExceptions, 0);
329
get { return
m_innerExceptions
; }
360
for (int i = 0; i <
m_innerExceptions
.Count; i++)
364
if (!predicate(
m_innerExceptions
[i]))
371
unhandledExceptions.Add(
m_innerExceptions
[i]);
446
for (int i = 0; i <
m_innerExceptions
.Count; i++)
451
text, Environment.NewLine, i,
m_innerExceptions
[i].ToString(), "<---", Environment.NewLine);