summaryrefslogtreecommitdiff
path: root/.packages/microsoft.aspnetcore.app.ref/3.0.1/ref/netcoreapp3.0/Microsoft.AspNetCore.Diagnostics.Abstractions.xml
blob: ef73d7e0e38247c0dc10996a478735495af7245c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
<?xml version="1.0"?>
<doc>
    <assembly>
        <name>Microsoft.AspNetCore.Diagnostics.Abstractions</name>
    </assembly>
    <members>
        <member name="T:Microsoft.AspNetCore.Diagnostics.CompilationFailure">
            <summary>
            Describes a failure compiling a specific file.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Diagnostics.CompilationFailure.#ctor(System.String,System.String,System.String,System.Collections.Generic.IEnumerable{Microsoft.AspNetCore.Diagnostics.DiagnosticMessage})">
            <summary>
            Initializes a new instance of <see cref="T:Microsoft.AspNetCore.Diagnostics.CompilationFailure"/>.
            </summary>
            <param name="sourceFilePath">Path for the file that produced the compilation failure.</param>
            <param name="sourceFileContent">Contents of the file being compiled.</param>
            <param name="compiledContent">For templated languages (such as Asp.Net Core Razor), the generated content.
            </param>
            <param name="messages">One or or more <see cref="T:Microsoft.AspNetCore.Diagnostics.DiagnosticMessage"/> instances.</param>
        </member>
        <member name="M:Microsoft.AspNetCore.Diagnostics.CompilationFailure.#ctor(System.String,System.String,System.String,System.Collections.Generic.IEnumerable{Microsoft.AspNetCore.Diagnostics.DiagnosticMessage},System.String)">
            <summary>
            Initializes a new instance of <see cref="T:Microsoft.AspNetCore.Diagnostics.CompilationFailure"/>.
            </summary>
            <param name="sourceFilePath">Path for the file that produced the compilation failure.</param>
            <param name="sourceFileContent">Contents of the file being compiled.</param>
            <param name="compiledContent">For templated languages (such as Asp.Net Core Razor), the generated content.
            </param>
            <param name="messages">One or or more <see cref="T:Microsoft.AspNetCore.Diagnostics.DiagnosticMessage"/> instances.</param>
            <param name="failureSummary">Summary message or instructions to fix the failure.</param>
        </member>
        <member name="P:Microsoft.AspNetCore.Diagnostics.CompilationFailure.SourceFilePath">
            <summary>
            Path of the file that produced the compilation failure.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Diagnostics.CompilationFailure.SourceFileContent">
            <summary>
            Contents of the file.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Diagnostics.CompilationFailure.CompiledContent">
            <summary>
            Contents being compiled.
            </summary>
            <remarks>
            For templated files, the <see cref="P:Microsoft.AspNetCore.Diagnostics.CompilationFailure.SourceFileContent"/> represents the original content and
            <see cref="P:Microsoft.AspNetCore.Diagnostics.CompilationFailure.CompiledContent"/> represents the transformed content. This property can be null if
            the exception is encountered during transformation.
            </remarks>
        </member>
        <member name="P:Microsoft.AspNetCore.Diagnostics.CompilationFailure.Messages">
            <summary>
            Gets a sequence of <see cref="T:Microsoft.AspNetCore.Diagnostics.DiagnosticMessage"/> produced as a result of compilation.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Diagnostics.CompilationFailure.FailureSummary">
            <summary>
            Summary message or instructions to fix the failure.
            </summary>
        </member>
        <member name="T:Microsoft.AspNetCore.Diagnostics.DiagnosticMessage">
            <summary>
            A single diagnostic message.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Diagnostics.DiagnosticMessage.SourceFilePath">
            <summary>
            Path of the file that produced the message.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Diagnostics.DiagnosticMessage.Message">
            <summary>
            Gets the error message.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Diagnostics.DiagnosticMessage.StartLine">
            <summary>
            Gets the one-based line index for the start of the compilation error.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Diagnostics.DiagnosticMessage.StartColumn">
            <summary>
            Gets the zero-based column index for the start of the compilation error.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Diagnostics.DiagnosticMessage.EndLine">
            <summary>
            Gets the one-based line index for the end of the compilation error.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Diagnostics.DiagnosticMessage.EndColumn">
            <summary>
            Gets the zero-based column index for the end of the compilation error.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Diagnostics.DiagnosticMessage.FormattedMessage">
            <summary>
            Gets the formatted error message.
            </summary>
        </member>
        <member name="T:Microsoft.AspNetCore.Diagnostics.ErrorContext">
            <summary>
            Provides context about the error currently being handled bt the DeveloperExceptionPageMiddleware.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Diagnostics.ErrorContext.#ctor(Microsoft.AspNetCore.Http.HttpContext,System.Exception)">
            <summary>
            Initializes the ErrorContext with the specified <see cref="P:Microsoft.AspNetCore.Diagnostics.ErrorContext.HttpContext"/> and <see cref="P:Microsoft.AspNetCore.Diagnostics.ErrorContext.Exception"/>.
            </summary>
            <param name="httpContext"></param>
            <param name="exception"></param>
        </member>
        <member name="P:Microsoft.AspNetCore.Diagnostics.ErrorContext.HttpContext">
            <summary>
            The <see cref="P:Microsoft.AspNetCore.Diagnostics.ErrorContext.HttpContext"/>.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Diagnostics.ErrorContext.Exception">
            <summary>
            The <see cref="P:Microsoft.AspNetCore.Diagnostics.ErrorContext.Exception"/> thrown during request processing.
            </summary>
        </member>
        <member name="T:Microsoft.AspNetCore.Diagnostics.ICompilationException">
            <summary>
            Specifies the contract for an exception representing compilation failure.
            </summary>
            <remarks>
            This interface is implemented on exceptions thrown during compilation to enable consumers
            to read compilation-related data out of the exception
            </remarks>
        </member>
        <member name="P:Microsoft.AspNetCore.Diagnostics.ICompilationException.CompilationFailures">
            <summary>
            Gets a sequence of <see cref="T:Microsoft.AspNetCore.Diagnostics.CompilationFailure"/> with compilation failures.
            </summary>
        </member>
        <member name="T:Microsoft.AspNetCore.Diagnostics.IDeveloperPageExceptionFilter">
            <summary>
            Provides an extensiblity point for changing the behavior of the DeveloperExceptionPageMiddleware.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Diagnostics.IDeveloperPageExceptionFilter.HandleExceptionAsync(Microsoft.AspNetCore.Diagnostics.ErrorContext,System.Func{Microsoft.AspNetCore.Diagnostics.ErrorContext,System.Threading.Tasks.Task})">
            <summary>
            An exception handling method that is used to either format the exception or delegate to the next handler in the chain.
            </summary>
            <param name="errorContext">The error context.</param>
            <param name="next">The next filter in the pipeline.</param>
            <returns>A task the completes when the handler is done executing.</returns>
        </member>
        <member name="T:Microsoft.AspNetCore.Diagnostics.IExceptionHandlerPathFeature">
            <summary>
            Represents an exception handler with the original path of the request.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Diagnostics.IExceptionHandlerPathFeature.Path">
            <summary>
            The portion of the request path that identifies the requested resource. The value
            is un-escaped.
            </summary>
        </member>
        <member name="T:Microsoft.AspNetCore.Diagnostics.IStatusCodePagesFeature">
            <summary>
            Represents the Status code pages feature.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Diagnostics.IStatusCodePagesFeature.Enabled">
            <summary>
            Indicates if the status code middleware will handle responses.
            </summary>
        </member>
    </members>
</doc>