2 writes to _innerException
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\Exception.cs (2)
40
_innerException
= innerException;
51
_innerException
= (Exception?)(info.GetValue("InnerException", typeof(Exception))); // Do not rename (binary serialization)
5 references to _innerException
System.Private.CoreLib (5)
src\libraries\System.Private.CoreLib\src\System\Exception.cs (5)
83
public Exception? InnerException =>
_innerException
;
113
info.AddValue("InnerException",
_innerException
, typeof(Exception)); // Do not rename (binary serialization)
128
string innerExceptionString =
_innerException
?.ToString() ?? "";
140
if (
_innerException
!= null)
161
if (
_innerException
!= null)