1 instantiation of ExceptionDetails
Microsoft.AspNetCore.Hosting (1)
src\Shared\StackTrace\ExceptionDetails\ExceptionDetailsProvider.cs (1)
35yield return new ExceptionDetails(ex, GetStackFrames(ex));
7 references to ExceptionDetails
Microsoft.AspNetCore.Hosting (7)
src\Shared\ErrorPage\ErrorPage.Designer.cs (2)
290foreach (var errorDetail in Model.ErrorDetails) 456foreach (var errorDetail in Model.ErrorDetails)
src\Shared\ErrorPage\ErrorPageModel.cs (2)
14public ErrorPageModel(IEnumerable<ExceptionDetails> errorDetails, bool showRuntimeDetails, string runtimeDisplayName, string runtimeArchitecture, string clrVersion, string currentAssemblyVesion, string operatingSystemDescription) 28public IEnumerable<ExceptionDetails> ErrorDetails { get; }
src\Shared\ErrorPage\ErrorPageModelBuilder.cs (2)
32IEnumerable<ExceptionDetails> errorDetails; 44errorDetails = Array.Empty<ExceptionDetails>();
src\Shared\StackTrace\ExceptionDetails\ExceptionDetailsProvider.cs (1)
29public IEnumerable<ExceptionDetails> GetDetails(Exception exception)