2 writes to LoaderExceptions
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\Reflection\ReflectionTypeLoadException.cs (2)
24LoaderExceptions = exceptions ?? Array.Empty<Exception>(); 33LoaderExceptions = (Exception?[]?)info.GetValue("Exceptions", typeof(Exception[])) ?? Array.Empty<Exception?>();
15 references to LoaderExceptions
dotnet-svcutil.xmlserializer (1)
Microsoft\Tools\ServiceModel\SvcUtil\InputModule.cs (1)
241foreach (Exception e in rtle.LoaderExceptions)
dotnet-svcutil-lib (1)
TypeLoader.cs (1)
59foreach (var ex in rtle.LoaderExceptions)
Microsoft.AspNetCore.Diagnostics (3)
DeveloperExceptionPage\Views\ErrorPage.Designer.cs (2)
459if (reflectionTypeLoadException.LoaderExceptions.Length > 0) 468foreach (var ex in reflectionTypeLoadException.LoaderExceptions)
src\Shared\StackTrace\ExceptionDetails\ExceptionDetailsProvider.cs (1)
63foreach (var loadException in typeLoadException.LoaderExceptions)
Microsoft.AspNetCore.Hosting (4)
Internal\HostingLoggerExtensions.cs (1)
31foreach (var ex in reflectionTypeLoadException.LoaderExceptions)
src\Shared\ErrorPage\ErrorPage.Designer.cs (2)
397if (reflectionTypeLoadException.LoaderExceptions.Length > 0) 406foreach (var ex in reflectionTypeLoadException.LoaderExceptions)
src\Shared\StackTrace\ExceptionDetails\ExceptionDetailsProvider.cs (1)
63foreach (var loadException in typeLoadException.LoaderExceptions)
Microsoft.AspNetCore.Server.IIS (3)
src\Shared\ErrorPage\ErrorPage.Designer.cs (2)
397if (reflectionTypeLoadException.LoaderExceptions.Length > 0) 406foreach (var ex in reflectionTypeLoadException.LoaderExceptions)
src\Shared\StackTrace\ExceptionDetails\ExceptionDetailsProvider.cs (1)
63foreach (var loadException in typeLoadException.LoaderExceptions)
Microsoft.Extensions.Hosting (1)
Internal\HostingLoggerExtensions.cs (1)
17foreach (Exception? ex in reflectionTypeLoadException.LoaderExceptions)
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\Reflection\ReflectionTypeLoadException.cs (2)
42info.AddValue("Exceptions", LoaderExceptions, typeof(Exception[])); 57Exception?[] exceptions = LoaderExceptions;