Esempio n. 1
0
        public static ErrorPageModel CreateErrorPageModel(
            IFileProvider contentRootFileProvider,
            ILogger?logger,
            bool showDetailedErrors,
            Exception exception)
        {
            var systemRuntimeAssembly = typeof(System.ComponentModel.DefaultValueAttribute).Assembly;
            var assemblyVersion       = new AssemblyName(systemRuntimeAssembly.FullName !).Version?.ToString() ?? string.Empty;
            var clrVersion            = assemblyVersion;
            var currentAssembly       = typeof(ErrorPage).Assembly;
            var currentAssemblyVesion = currentAssembly
                                        .GetCustomAttribute <AssemblyInformationalVersionAttribute>() !
                                        .InformationalVersion;

            IEnumerable <ExceptionDetails> errorDetails;

            if (showDetailedErrors)
            {
                var exceptionDetailProvider = new ExceptionDetailsProvider(
                    contentRootFileProvider,
                    logger,
                    sourceCodeLineCount: 6);

                errorDetails = exceptionDetailProvider.GetDetails(exception);
            }
            else
            {
                errorDetails = Array.Empty <ExceptionDetails>();
            }

            var model = new ErrorPageModel(
                errorDetails,
                showDetailedErrors,
                RuntimeInformation.FrameworkDescription,
                RuntimeInformation.ProcessArchitecture.ToString(),
                clrVersion,
                currentAssemblyVesion,
                RuntimeInformation.OSDescription);

            return(model);
        }
Esempio n. 2
0
 public ErrorPage(ErrorPageModel model)
 {
     Model = model;
 }