9c44836ba35472caa756f9102e845e38e3e8e724
[platform/core/dotnet/build-tools.git] /
1 <?xml version="1.0"?>\r
2 <doc>\r
3     <assembly>\r
4         <name>Microsoft.AspNetCore.Diagnostics.Abstractions</name>\r
5     </assembly>\r
6     <members>\r
7         <member name="T:Microsoft.AspNetCore.Diagnostics.CompilationFailure">\r
8             <summary>\r
9             Describes a failure compiling a specific file.\r
10             </summary>\r
11         </member>\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
13             <summary>\r
14             Initializes a new instance of <see cref="T:Microsoft.AspNetCore.Diagnostics.CompilationFailure"/>.\r
15             </summary>\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
19             </param>\r
20             <param name="messages">One or or more <see cref="T:Microsoft.AspNetCore.Diagnostics.DiagnosticMessage"/> instances.</param>\r
21         </member>\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
23             <summary>\r
24             Initializes a new instance of <see cref="T:Microsoft.AspNetCore.Diagnostics.CompilationFailure"/>.\r
25             </summary>\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
29             </param>\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
32         </member>\r
33         <member name="P:Microsoft.AspNetCore.Diagnostics.CompilationFailure.SourceFilePath">\r
34             <summary>\r
35             Path of the file that produced the compilation failure.\r
36             </summary>\r
37         </member>\r
38         <member name="P:Microsoft.AspNetCore.Diagnostics.CompilationFailure.SourceFileContent">\r
39             <summary>\r
40             Contents of the file.\r
41             </summary>\r
42         </member>\r
43         <member name="P:Microsoft.AspNetCore.Diagnostics.CompilationFailure.CompiledContent">\r
44             <summary>\r
45             Contents being compiled.\r
46             </summary>\r
47             <remarks>\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
51             </remarks>\r
52         </member>\r
53         <member name="P:Microsoft.AspNetCore.Diagnostics.CompilationFailure.Messages">\r
54             <summary>\r
55             Gets a sequence of <see cref="T:Microsoft.AspNetCore.Diagnostics.DiagnosticMessage"/> produced as a result of compilation.\r
56             </summary>\r
57         </member>\r
58         <member name="P:Microsoft.AspNetCore.Diagnostics.CompilationFailure.FailureSummary">\r
59             <summary>\r
60             Summary message or instructions to fix the failure.\r
61             </summary>\r
62         </member>\r
63         <member name="T:Microsoft.AspNetCore.Diagnostics.DiagnosticMessage">\r
64             <summary>\r
65             A single diagnostic message.\r
66             </summary>\r
67         </member>\r
68         <member name="P:Microsoft.AspNetCore.Diagnostics.DiagnosticMessage.SourceFilePath">\r
69             <summary>\r
70             Path of the file that produced the message.\r
71             </summary>\r
72         </member>\r
73         <member name="P:Microsoft.AspNetCore.Diagnostics.DiagnosticMessage.Message">\r
74             <summary>\r
75             Gets the error message.\r
76             </summary>\r
77         </member>\r
78         <member name="P:Microsoft.AspNetCore.Diagnostics.DiagnosticMessage.StartLine">\r
79             <summary>\r
80             Gets the one-based line index for the start of the compilation error.\r
81             </summary>\r
82         </member>\r
83         <member name="P:Microsoft.AspNetCore.Diagnostics.DiagnosticMessage.StartColumn">\r
84             <summary>\r
85             Gets the zero-based column index for the start of the compilation error.\r
86             </summary>\r
87         </member>\r
88         <member name="P:Microsoft.AspNetCore.Diagnostics.DiagnosticMessage.EndLine">\r
89             <summary>\r
90             Gets the one-based line index for the end of the compilation error.\r
91             </summary>\r
92         </member>\r
93         <member name="P:Microsoft.AspNetCore.Diagnostics.DiagnosticMessage.EndColumn">\r
94             <summary>\r
95             Gets the zero-based column index for the end of the compilation error.\r
96             </summary>\r
97         </member>\r
98         <member name="P:Microsoft.AspNetCore.Diagnostics.DiagnosticMessage.FormattedMessage">\r
99             <summary>\r
100             Gets the formatted error message.\r
101             </summary>\r
102         </member>\r
103         <member name="T:Microsoft.AspNetCore.Diagnostics.ErrorContext">\r
104             <summary>\r
105             Provides context about the error currently being handled bt the DeveloperExceptionPageMiddleware.\r
106             </summary>\r
107         </member>\r
108         <member name="M:Microsoft.AspNetCore.Diagnostics.ErrorContext.#ctor(Microsoft.AspNetCore.Http.HttpContext,System.Exception)">\r
109             <summary>\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
111             </summary>\r
112             <param name="httpContext"></param>\r
113             <param name="exception"></param>\r
114         </member>\r
115         <member name="P:Microsoft.AspNetCore.Diagnostics.ErrorContext.HttpContext">\r
116             <summary>\r
117             The <see cref="P:Microsoft.AspNetCore.Diagnostics.ErrorContext.HttpContext"/>.\r
118             </summary>\r
119         </member>\r
120         <member name="P:Microsoft.AspNetCore.Diagnostics.ErrorContext.Exception">\r
121             <summary>\r
122             The <see cref="P:Microsoft.AspNetCore.Diagnostics.ErrorContext.Exception"/> thrown during request processing.\r
123             </summary>\r
124         </member>\r
125         <member name="T:Microsoft.AspNetCore.Diagnostics.ICompilationException">\r
126             <summary>\r
127             Specifies the contract for an exception representing compilation failure.\r
128             </summary>\r
129             <remarks>\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
132             </remarks>\r
133         </member>\r
134         <member name="P:Microsoft.AspNetCore.Diagnostics.ICompilationException.CompilationFailures">\r
135             <summary>\r
136             Gets a sequence of <see cref="T:Microsoft.AspNetCore.Diagnostics.CompilationFailure"/> with compilation failures.\r
137             </summary>\r
138         </member>\r
139         <member name="T:Microsoft.AspNetCore.Diagnostics.IDeveloperPageExceptionFilter">\r
140             <summary>\r
141             Provides an extensiblity point for changing the behavior of the DeveloperExceptionPageMiddleware.\r
142             </summary>\r
143         </member>\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
145             <summary>\r
146             An exception handling method that is used to either format the exception or delegate to the next handler in the chain.\r
147             </summary>\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
151         </member>\r
152         <member name="T:Microsoft.AspNetCore.Diagnostics.IExceptionHandlerPathFeature">\r
153             <summary>\r
154             Represents an exception handler with the original path of the request.\r
155             </summary>\r
156         </member>\r
157         <member name="P:Microsoft.AspNetCore.Diagnostics.IExceptionHandlerPathFeature.Path">\r
158             <summary>\r
159             The portion of the request path that identifies the requested resource. The value\r
160             is un-escaped.\r
161             </summary>\r
162         </member>\r
163         <member name="T:Microsoft.AspNetCore.Diagnostics.IStatusCodePagesFeature">\r
164             <summary>\r
165             Represents the Status code pages feature.\r
166             </summary>\r
167         </member>\r
168         <member name="P:Microsoft.AspNetCore.Diagnostics.IStatusCodePagesFeature.Enabled">\r
169             <summary>\r
170             Indicates if the status code middleware will handle responses.\r
171             </summary>\r
172         </member>\r
173     </members>\r
174 </doc>\r