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