1 <?xml version="1.0"?>
\r
4 <name>Microsoft.AspNetCore.Diagnostics.Abstractions</name>
\r
7 <member name="T:Microsoft.AspNetCore.Diagnostics.CompilationFailure">
\r
9 Describes a failure compiling a specific file.
\r
12 <member name="M:Microsoft.AspNetCore.Diagnostics.CompilationFailure.#ctor(System.String,System.String,System.String,System.Collections.Generic.IEnumerable{Microsoft.AspNetCore.Diagnostics.DiagnosticMessage})">
\r
14 Initializes a new instance of <see cref="T:Microsoft.AspNetCore.Diagnostics.CompilationFailure"/>.
\r
16 <param name="sourceFilePath">Path for the file that produced the compilation failure.</param>
\r
17 <param name="sourceFileContent">Contents of the file being compiled.</param>
\r
18 <param name="compiledContent">For templated languages (such as Asp.Net Core Razor), the generated content.
\r
20 <param name="messages">One or or more <see cref="T:Microsoft.AspNetCore.Diagnostics.DiagnosticMessage"/> instances.</param>
\r
22 <member name="M:Microsoft.AspNetCore.Diagnostics.CompilationFailure.#ctor(System.String,System.String,System.String,System.Collections.Generic.IEnumerable{Microsoft.AspNetCore.Diagnostics.DiagnosticMessage},System.String)">
\r
24 Initializes a new instance of <see cref="T:Microsoft.AspNetCore.Diagnostics.CompilationFailure"/>.
\r
26 <param name="sourceFilePath">Path for the file that produced the compilation failure.</param>
\r
27 <param name="sourceFileContent">Contents of the file being compiled.</param>
\r
28 <param name="compiledContent">For templated languages (such as Asp.Net Core Razor), the generated content.
\r
30 <param name="messages">One or or more <see cref="T:Microsoft.AspNetCore.Diagnostics.DiagnosticMessage"/> instances.</param>
\r
31 <param name="failureSummary">Summary message or instructions to fix the failure.</param>
\r
33 <member name="P:Microsoft.AspNetCore.Diagnostics.CompilationFailure.SourceFilePath">
\r
35 Path of the file that produced the compilation failure.
\r
38 <member name="P:Microsoft.AspNetCore.Diagnostics.CompilationFailure.SourceFileContent">
\r
40 Contents of the file.
\r
43 <member name="P:Microsoft.AspNetCore.Diagnostics.CompilationFailure.CompiledContent">
\r
45 Contents being compiled.
\r
48 For templated files, the <see cref="P:Microsoft.AspNetCore.Diagnostics.CompilationFailure.SourceFileContent"/> represents the original content and
\r
49 <see cref="P:Microsoft.AspNetCore.Diagnostics.CompilationFailure.CompiledContent"/> represents the transformed content. This property can be null if
\r
50 the exception is encountered during transformation.
\r
53 <member name="P:Microsoft.AspNetCore.Diagnostics.CompilationFailure.Messages">
\r
55 Gets a sequence of <see cref="T:Microsoft.AspNetCore.Diagnostics.DiagnosticMessage"/> produced as a result of compilation.
\r
58 <member name="P:Microsoft.AspNetCore.Diagnostics.CompilationFailure.FailureSummary">
\r
60 Summary message or instructions to fix the failure.
\r
63 <member name="T:Microsoft.AspNetCore.Diagnostics.DiagnosticMessage">
\r
65 A single diagnostic message.
\r
68 <member name="P:Microsoft.AspNetCore.Diagnostics.DiagnosticMessage.SourceFilePath">
\r
70 Path of the file that produced the message.
\r
73 <member name="P:Microsoft.AspNetCore.Diagnostics.DiagnosticMessage.Message">
\r
75 Gets the error message.
\r
78 <member name="P:Microsoft.AspNetCore.Diagnostics.DiagnosticMessage.StartLine">
\r
80 Gets the one-based line index for the start of the compilation error.
\r
83 <member name="P:Microsoft.AspNetCore.Diagnostics.DiagnosticMessage.StartColumn">
\r
85 Gets the zero-based column index for the start of the compilation error.
\r
88 <member name="P:Microsoft.AspNetCore.Diagnostics.DiagnosticMessage.EndLine">
\r
90 Gets the one-based line index for the end of the compilation error.
\r
93 <member name="P:Microsoft.AspNetCore.Diagnostics.DiagnosticMessage.EndColumn">
\r
95 Gets the zero-based column index for the end of the compilation error.
\r
98 <member name="P:Microsoft.AspNetCore.Diagnostics.DiagnosticMessage.FormattedMessage">
\r
100 Gets the formatted error message.
\r
103 <member name="T:Microsoft.AspNetCore.Diagnostics.ErrorContext">
\r
105 Provides context about the error currently being handled bt the DeveloperExceptionPageMiddleware.
\r
108 <member name="M:Microsoft.AspNetCore.Diagnostics.ErrorContext.#ctor(Microsoft.AspNetCore.Http.HttpContext,System.Exception)">
\r
110 Initializes the ErrorContext with the specified <see cref="P:Microsoft.AspNetCore.Diagnostics.ErrorContext.HttpContext"/> and <see cref="P:Microsoft.AspNetCore.Diagnostics.ErrorContext.Exception"/>.
\r
112 <param name="httpContext"></param>
\r
113 <param name="exception"></param>
\r
115 <member name="P:Microsoft.AspNetCore.Diagnostics.ErrorContext.HttpContext">
\r
117 The <see cref="P:Microsoft.AspNetCore.Diagnostics.ErrorContext.HttpContext"/>.
\r
120 <member name="P:Microsoft.AspNetCore.Diagnostics.ErrorContext.Exception">
\r
122 The <see cref="P:Microsoft.AspNetCore.Diagnostics.ErrorContext.Exception"/> thrown during request processing.
\r
125 <member name="T:Microsoft.AspNetCore.Diagnostics.ICompilationException">
\r
127 Specifies the contract for an exception representing compilation failure.
\r
130 This interface is implemented on exceptions thrown during compilation to enable consumers
\r
131 to read compilation-related data out of the exception
\r
134 <member name="P:Microsoft.AspNetCore.Diagnostics.ICompilationException.CompilationFailures">
\r
136 Gets a sequence of <see cref="T:Microsoft.AspNetCore.Diagnostics.CompilationFailure"/> with compilation failures.
\r
139 <member name="T:Microsoft.AspNetCore.Diagnostics.IDeveloperPageExceptionFilter">
\r
141 Provides an extensiblity point for changing the behavior of the DeveloperExceptionPageMiddleware.
\r
144 <member name="M:Microsoft.AspNetCore.Diagnostics.IDeveloperPageExceptionFilter.HandleExceptionAsync(Microsoft.AspNetCore.Diagnostics.ErrorContext,System.Func{Microsoft.AspNetCore.Diagnostics.ErrorContext,System.Threading.Tasks.Task})">
\r
146 An exception handling method that is used to either format the exception or delegate to the next handler in the chain.
\r
148 <param name="errorContext">The error context.</param>
\r
149 <param name="next">The next filter in the pipeline.</param>
\r
150 <returns>A task the completes when the handler is done executing.</returns>
\r
152 <member name="T:Microsoft.AspNetCore.Diagnostics.IExceptionHandlerPathFeature">
\r
154 Represents an exception handler with the original path of the request.
\r
157 <member name="P:Microsoft.AspNetCore.Diagnostics.IExceptionHandlerPathFeature.Path">
\r
159 The portion of the request path that identifies the requested resource. The value
\r
163 <member name="T:Microsoft.AspNetCore.Diagnostics.IStatusCodePagesFeature">
\r
165 Represents the Status code pages feature.
\r
168 <member name="P:Microsoft.AspNetCore.Diagnostics.IStatusCodePagesFeature.Enabled">
\r
170 Indicates if the status code middleware will handle responses.
\r