4 writes to _source
System.Private.CoreLib (4)
src\libraries\System.Private.CoreLib\src\System\Exception.cs (4)
56_source = info.GetString("Source"); // Do not rename (binary serialization) 98get => _source ??= HasBeenThrown ? (TargetSite?.Module.Assembly.GetName().Name ?? "<unknown>") : null; 99set => _source = value; 108_source ??= Source; // Set the Source information correctly before serialization
1 reference to _source
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\Exception.cs (1)
120info.AddValue("Source", _source, typeof(string)); // Do not rename (binary serialization)