2 writes to _innerException
mscorlib (2)
system\exception.cs (2)
78
_innerException
= innerException;
91
_innerException
= (Exception)(info.GetValue("InnerException",typeof(Exception)));
4 references to _innerException
mscorlib (4)
system\exception.cs (4)
265
get { return
_innerException
; }
449
if (
_innerException
!=null) {
450
s = s + " ---> " +
_innerException
.ToString(needFileLineInfo, needMessage) + Environment.NewLine +
579
info.AddValue("InnerException",
_innerException
, typeof(Exception));