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)
83public Exception? InnerException => _innerException; 113info.AddValue("InnerException", _innerException, typeof(Exception)); // Do not rename (binary serialization) 128string innerExceptionString = _innerException?.ToString() ?? ""; 140if (_innerException != null) 161if (_innerException != null)