ChipDNAClientCLI/bin/Debug/Microsoft.AspNetCore.Diagnostics.xml
2025-06-23 19:53:54 +01:00

1048 lines
50 KiB
XML

<?xml version="1.0"?>
<doc>
<assembly>
<name>Microsoft.AspNetCore.Diagnostics</name>
</assembly>
<members>
<member name="M:Microsoft.Extensions.Internal.TypeNameHelper.GetTypeDisplayName(System.Type,System.Boolean,System.Boolean)">
<summary>
Pretty print a type name.
</summary>
<param name="type">The <see cref="T:System.Type"/>.</param>
<param name="fullName"><c>true</c> to print a fully qualified name.</param>
<param name="includeGenericParameterNames"><c>true</c> to include generic parameter names.</param>
<returns>The pretty printed type name.</returns>
</member>
<member name="T:Microsoft.Extensions.StackTrace.Sources.ExceptionDetails">
<summary>
Contains details for individual exception messages.
</summary>
</member>
<member name="P:Microsoft.Extensions.StackTrace.Sources.ExceptionDetails.Error">
<summary>
An individual exception
</summary>
</member>
<member name="P:Microsoft.Extensions.StackTrace.Sources.ExceptionDetails.StackFrames">
<summary>
The generated stack frames
</summary>
</member>
<member name="P:Microsoft.Extensions.StackTrace.Sources.ExceptionDetails.ErrorMessage">
<summary>
Gets or sets the summary message.
</summary>
</member>
<member name="T:Microsoft.Extensions.StackTrace.Sources.StackFrameSourceCodeInfo">
<summary>
Contains the source code where the exception occurred.
</summary>
</member>
<member name="P:Microsoft.Extensions.StackTrace.Sources.StackFrameSourceCodeInfo.Function">
<summary>
Function containing instruction
</summary>
</member>
<member name="P:Microsoft.Extensions.StackTrace.Sources.StackFrameSourceCodeInfo.File">
<summary>
File containing the instruction
</summary>
</member>
<member name="P:Microsoft.Extensions.StackTrace.Sources.StackFrameSourceCodeInfo.Line">
<summary>
The line number of the instruction
</summary>
</member>
<member name="P:Microsoft.Extensions.StackTrace.Sources.StackFrameSourceCodeInfo.PreContextLine">
<summary>
The line preceding the frame line
</summary>
</member>
<member name="P:Microsoft.Extensions.StackTrace.Sources.StackFrameSourceCodeInfo.PreContextCode">
<summary>
Lines of code before the actual error line(s).
</summary>
</member>
<member name="P:Microsoft.Extensions.StackTrace.Sources.StackFrameSourceCodeInfo.ContextCode">
<summary>
Line(s) of code responsible for the error.
</summary>
</member>
<member name="P:Microsoft.Extensions.StackTrace.Sources.StackFrameSourceCodeInfo.PostContextCode">
<summary>
Lines of code after the actual error line(s).
</summary>
</member>
<member name="P:Microsoft.Extensions.StackTrace.Sources.StackFrameSourceCodeInfo.ErrorDetails">
<summary>
Specific error details for this stack frame.
</summary>
</member>
<member name="T:Microsoft.Extensions.RazorViews.BaseView">
<summary>
Infrastructure
</summary>
</member>
<member name="P:Microsoft.Extensions.RazorViews.BaseView.Context">
<summary>
The request context
</summary>
</member>
<member name="P:Microsoft.Extensions.RazorViews.BaseView.Request">
<summary>
The request
</summary>
</member>
<member name="P:Microsoft.Extensions.RazorViews.BaseView.Response">
<summary>
The response
</summary>
</member>
<member name="P:Microsoft.Extensions.RazorViews.BaseView.Output">
<summary>
The output stream
</summary>
</member>
<member name="P:Microsoft.Extensions.RazorViews.BaseView.HtmlEncoder">
<summary>
Html encoder used to encode content.
</summary>
</member>
<member name="P:Microsoft.Extensions.RazorViews.BaseView.UrlEncoder">
<summary>
Url encoder used to encode content.
</summary>
</member>
<member name="P:Microsoft.Extensions.RazorViews.BaseView.JavaScriptEncoder">
<summary>
JavaScript encoder used to encode content.
</summary>
</member>
<member name="M:Microsoft.Extensions.RazorViews.BaseView.ExecuteAsync(Microsoft.AspNetCore.Http.HttpContext)">
<summary>
Execute an individual request
</summary>
<param name="context"></param>
</member>
<member name="M:Microsoft.Extensions.RazorViews.BaseView.ExecuteAsync">
<summary>
Execute an individual request
</summary>
</member>
<member name="M:Microsoft.Extensions.RazorViews.BaseView.WriteLiteral(System.Object)">
<summary>
Write the given value without HTML encoding directly to <see cref="P:Microsoft.Extensions.RazorViews.BaseView.Output"/>.
</summary>
<param name="value">The <see cref="T:System.Object"/> to write.</param>
</member>
<member name="M:Microsoft.Extensions.RazorViews.BaseView.WriteLiteral(System.String)">
<summary>
Write the given value without HTML encoding directly to <see cref="P:Microsoft.Extensions.RazorViews.BaseView.Output"/>.
</summary>
<param name="value">The <see cref="T:System.String"/> to write.</param>
</member>
<member name="M:Microsoft.Extensions.RazorViews.BaseView.WriteAttribute(System.String,System.String,System.String,Microsoft.Extensions.RazorViews.AttributeValue[])">
<summary>
Writes the given attribute to the given writer
</summary>
<param name="name">The name of the attribute to write</param>
<param name="leader">The value of the prefix</param>
<param name="trailer">The value of the suffix</param>
<param name="values">The <see cref="T:Microsoft.Extensions.RazorViews.AttributeValue"/>s to write.</param>
</member>
<member name="M:Microsoft.Extensions.RazorViews.BaseView.Write(Microsoft.Extensions.RazorViews.HelperResult)">
<summary>
<see cref="M:Microsoft.Extensions.RazorViews.HelperResult.WriteTo(System.IO.TextWriter)"/> is invoked
</summary>
<param name="result">The <see cref="T:Microsoft.Extensions.RazorViews.HelperResult"/> to invoke</param>
</member>
<member name="M:Microsoft.Extensions.RazorViews.BaseView.Write(System.Object)">
<summary>
Writes the specified <paramref name="value"/> to <see cref="P:Microsoft.Extensions.RazorViews.BaseView.Output"/>.
</summary>
<param name="value">The <see cref="T:System.Object"/> to write.</param>
<remarks>
<see cref="M:Microsoft.Extensions.RazorViews.HelperResult.WriteTo(System.IO.TextWriter)"/> is invoked for <see cref="T:Microsoft.Extensions.RazorViews.HelperResult"/> types.
For all other types, the encoded result of <see cref="M:System.Object.ToString"/> is written to
<see cref="P:Microsoft.Extensions.RazorViews.BaseView.Output"/>.
</remarks>
</member>
<member name="M:Microsoft.Extensions.RazorViews.BaseView.Write(System.String)">
<summary>
Writes the specified <paramref name="value"/> with HTML encoding to <see cref="P:Microsoft.Extensions.RazorViews.BaseView.Output"/>.
</summary>
<param name="value">The <see cref="T:System.String"/> to write.</param>
</member>
<member name="T:Microsoft.Extensions.RazorViews.HelperResult">
<summary>
Represents a deferred write operation in a <see cref="T:Microsoft.Extensions.RazorViews.BaseView"/>.
</summary>
</member>
<member name="M:Microsoft.Extensions.RazorViews.HelperResult.#ctor(System.Action{System.IO.TextWriter})">
<summary>
Creates a new instance of <see cref="T:Microsoft.Extensions.RazorViews.HelperResult"/>.
</summary>
<param name="action">The delegate to invoke when <see cref="M:Microsoft.Extensions.RazorViews.HelperResult.WriteTo(System.IO.TextWriter)"/> is called.</param>
</member>
<member name="M:Microsoft.Extensions.RazorViews.HelperResult.WriteTo(System.IO.TextWriter)">
<summary>
Method invoked to produce content from the <see cref="T:Microsoft.Extensions.RazorViews.HelperResult"/>.
</summary>
<param name="writer">The <see cref="T:System.IO.TextWriter"/> instance to write to.</param>
</member>
<member name="T:Microsoft.AspNetCore.Builder.DeveloperExceptionPageExtensions">
<summary>
<see cref="T:Microsoft.AspNetCore.Builder.IApplicationBuilder"/> extension methods for the <see cref="T:Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware"/>.
</summary>
</member>
<member name="M:Microsoft.AspNetCore.Builder.DeveloperExceptionPageExtensions.UseDeveloperExceptionPage(Microsoft.AspNetCore.Builder.IApplicationBuilder)">
<summary>
Captures synchronous and asynchronous <see cref="T:System.Exception"/> instances from the pipeline and generates HTML error responses.
</summary>
<param name="app">The <see cref="T:Microsoft.AspNetCore.Builder.IApplicationBuilder"/>.</param>
<returns>A reference to the <paramref name="app"/> after the operation has completed.</returns>
</member>
<member name="M:Microsoft.AspNetCore.Builder.DeveloperExceptionPageExtensions.UseDeveloperExceptionPage(Microsoft.AspNetCore.Builder.IApplicationBuilder,Microsoft.AspNetCore.Builder.DeveloperExceptionPageOptions)">
<summary>
Captures synchronous and asynchronous <see cref="T:System.Exception"/> instances from the pipeline and generates HTML error responses.
</summary>
<param name="app">The <see cref="T:Microsoft.AspNetCore.Builder.IApplicationBuilder"/>.</param>
<param name="options">A <see cref="T:Microsoft.AspNetCore.Builder.DeveloperExceptionPageOptions"/> that specifies options for the middleware.</param>
<returns>A reference to the <paramref name="app"/> after the operation has completed.</returns>
</member>
<member name="T:Microsoft.AspNetCore.Builder.DeveloperExceptionPageOptions">
<summary>
Options for the <see cref="T:Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware"/>.
</summary>
</member>
<member name="M:Microsoft.AspNetCore.Builder.DeveloperExceptionPageOptions.#ctor">
<summary>
Create an instance with the default options settings.
</summary>
</member>
<member name="P:Microsoft.AspNetCore.Builder.DeveloperExceptionPageOptions.SourceCodeLineCount">
<summary>
Determines how many lines of code to include before and after the line of code
present in an exception's stack frame. Only applies when symbols are available and
source code referenced by the exception stack trace is present on the server.
</summary>
</member>
<member name="P:Microsoft.AspNetCore.Builder.DeveloperExceptionPageOptions.FileProvider">
<summary>
Provides files containing source code used to display contextual information of an exception.
</summary>
<remarks>
If <c>null</c> <see cref="T:Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware" /> will use a <see cref="T:Microsoft.Extensions.FileProviders.PhysicalFileProvider"/>.
</remarks>
</member>
<member name="M:Microsoft.AspNetCore.Builder.ExceptionHandlerExtensions.UseExceptionHandler(Microsoft.AspNetCore.Builder.IApplicationBuilder)">
<summary>
Adds a middleware to the pipeline that will catch exceptions, log them, and re-execute the request in an alternate pipeline.
The request will not be re-executed if the response has already started.
</summary>
<param name="app"></param>
<returns></returns>
</member>
<member name="M:Microsoft.AspNetCore.Builder.ExceptionHandlerExtensions.UseExceptionHandler(Microsoft.AspNetCore.Builder.IApplicationBuilder,System.String)">
<summary>
Adds a middleware to the pipeline that will catch exceptions, log them, reset the request path, and re-execute the request.
The request will not be re-executed if the response has already started.
</summary>
<param name="app"></param>
<param name="errorHandlingPath"></param>
<returns></returns>
</member>
<member name="M:Microsoft.AspNetCore.Builder.ExceptionHandlerExtensions.UseExceptionHandler(Microsoft.AspNetCore.Builder.IApplicationBuilder,System.Action{Microsoft.AspNetCore.Builder.IApplicationBuilder})">
<summary>
Adds a middleware to the pipeline that will catch exceptions, log them, and re-execute the request in an alternate pipeline.
The request will not be re-executed if the response has already started.
</summary>
<param name="app"></param>
<param name="configure"></param>
<returns></returns>
</member>
<member name="M:Microsoft.AspNetCore.Builder.ExceptionHandlerExtensions.UseExceptionHandler(Microsoft.AspNetCore.Builder.IApplicationBuilder,Microsoft.AspNetCore.Builder.ExceptionHandlerOptions)">
<summary>
Adds a middleware to the pipeline that will catch exceptions, log them, and re-execute the request in an alternate pipeline.
The request will not be re-executed if the response has already started.
</summary>
<param name="app"></param>
<param name="options"></param>
<returns></returns>
</member>
<member name="M:Microsoft.AspNetCore.Builder.StatusCodePagesExtensions.UseStatusCodePages(Microsoft.AspNetCore.Builder.IApplicationBuilder,Microsoft.AspNetCore.Builder.StatusCodePagesOptions)">
<summary>
Adds a StatusCodePages middleware with the given options that checks for responses with status codes
between 400 and 599 that do not have a body.
</summary>
<param name="app"></param>
<param name="options"></param>
<returns></returns>
</member>
<member name="M:Microsoft.AspNetCore.Builder.StatusCodePagesExtensions.UseStatusCodePages(Microsoft.AspNetCore.Builder.IApplicationBuilder)">
<summary>
Adds a StatusCodePages middleware with a default response handler that checks for responses with status codes
between 400 and 599 that do not have a body.
</summary>
<param name="app"></param>
<returns></returns>
</member>
<member name="M:Microsoft.AspNetCore.Builder.StatusCodePagesExtensions.UseStatusCodePages(Microsoft.AspNetCore.Builder.IApplicationBuilder,System.Func{Microsoft.AspNetCore.Diagnostics.StatusCodeContext,System.Threading.Tasks.Task})">
<summary>
Adds a StatusCodePages middleware with the specified handler that checks for responses with status codes
between 400 and 599 that do not have a body.
</summary>
<param name="app"></param>
<param name="handler"></param>
<returns></returns>
</member>
<member name="M:Microsoft.AspNetCore.Builder.StatusCodePagesExtensions.UseStatusCodePages(Microsoft.AspNetCore.Builder.IApplicationBuilder,System.String,System.String)">
<summary>
Adds a StatusCodePages middleware with the specified response body to send. This may include a '{0}' placeholder for the status code.
The middleware checks for responses with status codes between 400 and 599 that do not have a body.
</summary>
<param name="app"></param>
<param name="contentType"></param>
<param name="bodyFormat"></param>
<returns></returns>
</member>
<member name="M:Microsoft.AspNetCore.Builder.StatusCodePagesExtensions.UseStatusCodePagesWithRedirects(Microsoft.AspNetCore.Builder.IApplicationBuilder,System.String)">
<summary>
Adds a StatusCodePages middleware to the pipeline. Specifies that responses should be handled by redirecting
with the given location URL template. This may include a '{0}' placeholder for the status code. URLs starting
with '~' will have PathBase prepended, where any other URL will be used as is.
</summary>
<param name="app"></param>
<param name="locationFormat"></param>
<returns></returns>
</member>
<member name="M:Microsoft.AspNetCore.Builder.StatusCodePagesExtensions.UseStatusCodePages(Microsoft.AspNetCore.Builder.IApplicationBuilder,System.Action{Microsoft.AspNetCore.Builder.IApplicationBuilder})">
<summary>
Adds a StatusCodePages middleware to the pipeline with the specified alternate middleware pipeline to execute
to generate the response body.
</summary>
<param name="app"></param>
<param name="configuration"></param>
<returns></returns>
</member>
<member name="M:Microsoft.AspNetCore.Builder.StatusCodePagesExtensions.UseStatusCodePagesWithReExecute(Microsoft.AspNetCore.Builder.IApplicationBuilder,System.String,System.String)">
<summary>
Adds a StatusCodePages middleware to the pipeline. Specifies that the response body should be generated by
re-executing the request pipeline using an alternate path. This path may contain a '{0}' placeholder of the status code.
</summary>
<param name="app"></param>
<param name="pathFormat"></param>
<param name="queryFormat"></param>
<returns></returns>
</member>
<member name="T:Microsoft.AspNetCore.Builder.StatusCodePagesOptions">
<summary>
Options for StatusCodePagesMiddleware.
</summary>
</member>
<member name="T:Microsoft.AspNetCore.Builder.WelcomePageExtensions">
<summary>
IApplicationBuilder extensions for the WelcomePageMiddleware.
</summary>
</member>
<member name="M:Microsoft.AspNetCore.Builder.WelcomePageExtensions.UseWelcomePage(Microsoft.AspNetCore.Builder.IApplicationBuilder,Microsoft.AspNetCore.Builder.WelcomePageOptions)">
<summary>
Adds the WelcomePageMiddleware to the pipeline with the given options.
</summary>
<param name="app"></param>
<param name="options"></param>
<returns></returns>
</member>
<member name="M:Microsoft.AspNetCore.Builder.WelcomePageExtensions.UseWelcomePage(Microsoft.AspNetCore.Builder.IApplicationBuilder,Microsoft.AspNetCore.Http.PathString)">
<summary>
Adds the WelcomePageMiddleware to the pipeline with the given path.
</summary>
<param name="app"></param>
<param name="path"></param>
<returns></returns>
</member>
<member name="M:Microsoft.AspNetCore.Builder.WelcomePageExtensions.UseWelcomePage(Microsoft.AspNetCore.Builder.IApplicationBuilder,System.String)">
<summary>
Adds the WelcomePageMiddleware to the pipeline with the given path.
</summary>
<param name="app"></param>
<param name="path"></param>
<returns></returns>
</member>
<member name="M:Microsoft.AspNetCore.Builder.WelcomePageExtensions.UseWelcomePage(Microsoft.AspNetCore.Builder.IApplicationBuilder)">
<summary>
Adds the WelcomePageMiddleware to the pipeline.
</summary>
<param name="app"></param>
<returns></returns>
</member>
<member name="T:Microsoft.AspNetCore.Builder.WelcomePageOptions">
<summary>
Options for the WelcomePageMiddleware.
</summary>
</member>
<member name="P:Microsoft.AspNetCore.Builder.WelcomePageOptions.Path">
<summary>
Specifies which requests paths will be responded to. Exact matches only. Leave null to handle all requests.
</summary>
</member>
<member name="T:Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware">
<summary>
Captures synchronous and asynchronous exceptions from the pipeline and generates HTML error responses.
</summary>
</member>
<member name="M:Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.#ctor(Microsoft.AspNetCore.Http.RequestDelegate,Microsoft.Extensions.Options.IOptions{Microsoft.AspNetCore.Builder.DeveloperExceptionPageOptions},Microsoft.Extensions.Logging.ILoggerFactory,Microsoft.AspNetCore.Hosting.IHostingEnvironment,System.Diagnostics.DiagnosticSource)">
<summary>
Initializes a new instance of the <see cref="T:Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware"/> class
</summary>
<param name="next"></param>
<param name="options"></param>
<param name="loggerFactory"></param>
<param name="hostingEnvironment"></param>
<param name="diagnosticSource"></param>
</member>
<member name="M:Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(Microsoft.AspNetCore.Http.HttpContext)">
<summary>
Process an individual request.
</summary>
<param name="context"></param>
<returns></returns>
</member>
<member name="T:Microsoft.AspNetCore.Diagnostics.RazorViews.CompilationErrorPageModel">
<summary>
Holds data to be displayed on the compilation error page.
</summary>
</member>
<member name="P:Microsoft.AspNetCore.Diagnostics.RazorViews.CompilationErrorPageModel.Options">
<summary>
Options for what output to display.
</summary>
</member>
<member name="P:Microsoft.AspNetCore.Diagnostics.RazorViews.CompilationErrorPageModel.ErrorDetails">
<summary>
Detailed information about each parse or compilation error.
</summary>
</member>
<member name="P:Microsoft.AspNetCore.Diagnostics.RazorViews.CompilationErrorPageModel.CompiledContent">
<summary>
Gets the generated content that produced the corresponding <see cref="P:Microsoft.AspNetCore.Diagnostics.RazorViews.CompilationErrorPageModel.ErrorDetails"/>.
</summary>
</member>
<member name="T:Microsoft.AspNetCore.Diagnostics.RazorViews.ErrorPageModel">
<summary>
Holds data to be displayed on the error page.
</summary>
</member>
<member name="P:Microsoft.AspNetCore.Diagnostics.RazorViews.ErrorPageModel.Options">
<summary>
Options for what output to display.
</summary>
</member>
<member name="P:Microsoft.AspNetCore.Diagnostics.RazorViews.ErrorPageModel.ErrorDetails">
<summary>
Detailed information about each exception in the stack.
</summary>
</member>
<member name="P:Microsoft.AspNetCore.Diagnostics.RazorViews.ErrorPageModel.Query">
<summary>
Parsed query data.
</summary>
</member>
<member name="P:Microsoft.AspNetCore.Diagnostics.RazorViews.ErrorPageModel.Cookies">
<summary>
Request cookies.
</summary>
</member>
<member name="P:Microsoft.AspNetCore.Diagnostics.RazorViews.ErrorPageModel.Headers">
<summary>
Request headers.
</summary>
</member>
<member name="P:Microsoft.AspNetCore.Diagnostics.Resources.DiagnosticsPageHtml_Information">
<summary>
You are seeing this page because DiagnosticsPageMiddleware was added to your web application.
</summary>
</member>
<member name="M:Microsoft.AspNetCore.Diagnostics.Resources.FormatDiagnosticsPageHtml_Information">
<summary>
You are seeing this page because DiagnosticsPageMiddleware was added to your web application.
</summary>
</member>
<member name="P:Microsoft.AspNetCore.Diagnostics.Resources.DiagnosticsPageHtml_TestErrorMessage">
<summary>
Test Error Message
</summary>
</member>
<member name="M:Microsoft.AspNetCore.Diagnostics.Resources.FormatDiagnosticsPageHtml_TestErrorMessage">
<summary>
Test Error Message
</summary>
</member>
<member name="P:Microsoft.AspNetCore.Diagnostics.Resources.DiagnosticsPageHtml_TestErrorSection">
<summary>
Test Error Page
</summary>
</member>
<member name="M:Microsoft.AspNetCore.Diagnostics.Resources.FormatDiagnosticsPageHtml_TestErrorSection">
<summary>
Test Error Page
</summary>
</member>
<member name="P:Microsoft.AspNetCore.Diagnostics.Resources.DiagnosticsPageHtml_Title">
<summary>
Diagnostics Page
</summary>
</member>
<member name="M:Microsoft.AspNetCore.Diagnostics.Resources.FormatDiagnosticsPageHtml_Title">
<summary>
Diagnostics Page
</summary>
</member>
<member name="P:Microsoft.AspNetCore.Diagnostics.Resources.ErrorPageHtml_CookiesButton">
<summary>
Cookies
</summary>
</member>
<member name="M:Microsoft.AspNetCore.Diagnostics.Resources.FormatErrorPageHtml_CookiesButton">
<summary>
Cookies
</summary>
</member>
<member name="P:Microsoft.AspNetCore.Diagnostics.Resources.ErrorPageHtml_HeadersButton">
<summary>
Headers
</summary>
</member>
<member name="M:Microsoft.AspNetCore.Diagnostics.Resources.FormatErrorPageHtml_HeadersButton">
<summary>
Headers
</summary>
</member>
<member name="P:Microsoft.AspNetCore.Diagnostics.Resources.ErrorPageHtml_NoCookieData">
<summary>
No cookie data.
</summary>
</member>
<member name="M:Microsoft.AspNetCore.Diagnostics.Resources.FormatErrorPageHtml_NoCookieData">
<summary>
No cookie data.
</summary>
</member>
<member name="P:Microsoft.AspNetCore.Diagnostics.Resources.ErrorPageHtml_NoHeaderData">
<summary>
No header data.
</summary>
</member>
<member name="M:Microsoft.AspNetCore.Diagnostics.Resources.FormatErrorPageHtml_NoHeaderData">
<summary>
No header data.
</summary>
</member>
<member name="P:Microsoft.AspNetCore.Diagnostics.Resources.ErrorPageHtml_NoQueryStringData">
<summary>
No QueryString data.
</summary>
</member>
<member name="M:Microsoft.AspNetCore.Diagnostics.Resources.FormatErrorPageHtml_NoQueryStringData">
<summary>
No QueryString data.
</summary>
</member>
<member name="P:Microsoft.AspNetCore.Diagnostics.Resources.ErrorPageHtml_QueryButton">
<summary>
Query
</summary>
</member>
<member name="M:Microsoft.AspNetCore.Diagnostics.Resources.FormatErrorPageHtml_QueryButton">
<summary>
Query
</summary>
</member>
<member name="P:Microsoft.AspNetCore.Diagnostics.Resources.ErrorPageHtml_StackButton">
<summary>
Stack
</summary>
</member>
<member name="M:Microsoft.AspNetCore.Diagnostics.Resources.FormatErrorPageHtml_StackButton">
<summary>
Stack
</summary>
</member>
<member name="P:Microsoft.AspNetCore.Diagnostics.Resources.ErrorPageHtml_Title">
<summary>
Internal Server Error
</summary>
</member>
<member name="M:Microsoft.AspNetCore.Diagnostics.Resources.FormatErrorPageHtml_Title">
<summary>
Internal Server Error
</summary>
</member>
<member name="P:Microsoft.AspNetCore.Diagnostics.Resources.ErrorPageHtml_UnhandledException">
<summary>
An unhandled exception occurred while processing the request.
</summary>
</member>
<member name="M:Microsoft.AspNetCore.Diagnostics.Resources.FormatErrorPageHtml_UnhandledException">
<summary>
An unhandled exception occurred while processing the request.
</summary>
</member>
<member name="P:Microsoft.AspNetCore.Diagnostics.Resources.ErrorPageHtml_UnknownLocation">
<summary>
Unknown location
</summary>
</member>
<member name="M:Microsoft.AspNetCore.Diagnostics.Resources.FormatErrorPageHtml_UnknownLocation">
<summary>
Unknown location
</summary>
</member>
<member name="P:Microsoft.AspNetCore.Diagnostics.Resources.ErrorPageHtml_ValueColumn">
<summary>
Value
</summary>
</member>
<member name="M:Microsoft.AspNetCore.Diagnostics.Resources.FormatErrorPageHtml_ValueColumn">
<summary>
Value
</summary>
</member>
<member name="P:Microsoft.AspNetCore.Diagnostics.Resources.ErrorPageHtml_VariableColumn">
<summary>
Variable
</summary>
</member>
<member name="M:Microsoft.AspNetCore.Diagnostics.Resources.FormatErrorPageHtml_VariableColumn">
<summary>
Variable
</summary>
</member>
<member name="P:Microsoft.AspNetCore.Diagnostics.Resources.Exception_PathMustStartWithSlash">
<summary>
The path must start with a '/'.
</summary>
</member>
<member name="M:Microsoft.AspNetCore.Diagnostics.Resources.FormatException_PathMustStartWithSlash">
<summary>
The path must start with a '/'.
</summary>
</member>
<member name="P:Microsoft.AspNetCore.Diagnostics.Resources.RuntimeInfoPage_PackageNameColumnName">
<summary>
Name
</summary>
</member>
<member name="M:Microsoft.AspNetCore.Diagnostics.Resources.FormatRuntimeInfoPage_PackageNameColumnName">
<summary>
Name
</summary>
</member>
<member name="P:Microsoft.AspNetCore.Diagnostics.Resources.RuntimeInfoPage_PackagePathColumnName">
<summary>
Path
</summary>
</member>
<member name="M:Microsoft.AspNetCore.Diagnostics.Resources.FormatRuntimeInfoPage_PackagePathColumnName">
<summary>
Path
</summary>
</member>
<member name="P:Microsoft.AspNetCore.Diagnostics.Resources.RuntimeInfoPage_Packages">
<summary>
Packages:
</summary>
</member>
<member name="M:Microsoft.AspNetCore.Diagnostics.Resources.FormatRuntimeInfoPage_Packages">
<summary>
Packages:
</summary>
</member>
<member name="P:Microsoft.AspNetCore.Diagnostics.Resources.RuntimeInfoPage_PackagesFail">
<summary>
Could not retrieve the list of loaded packages.
</summary>
</member>
<member name="M:Microsoft.AspNetCore.Diagnostics.Resources.FormatRuntimeInfoPage_PackagesFail">
<summary>
Could not retrieve the list of loaded packages.
</summary>
</member>
<member name="P:Microsoft.AspNetCore.Diagnostics.Resources.RuntimeInfoPage_PackageVersionColumnName">
<summary>
Version
</summary>
</member>
<member name="M:Microsoft.AspNetCore.Diagnostics.Resources.FormatRuntimeInfoPage_PackageVersionColumnName">
<summary>
Version
</summary>
</member>
<member name="P:Microsoft.AspNetCore.Diagnostics.Resources.RuntimeInfoPage_RuntimeVersion">
<summary>
Runtime Version:
</summary>
</member>
<member name="M:Microsoft.AspNetCore.Diagnostics.Resources.FormatRuntimeInfoPage_RuntimeVersion">
<summary>
Runtime Version:
</summary>
</member>
<member name="P:Microsoft.AspNetCore.Diagnostics.Resources.RuntimeInfoPage_RuntimeVersionFail">
<summary>
Could not determine the runtime version.
</summary>
</member>
<member name="M:Microsoft.AspNetCore.Diagnostics.Resources.FormatRuntimeInfoPage_RuntimeVersionFail">
<summary>
Could not determine the runtime version.
</summary>
</member>
<member name="P:Microsoft.AspNetCore.Diagnostics.Resources.RuntimeInfoPage_Title">
<summary>
Runtime Information
</summary>
</member>
<member name="M:Microsoft.AspNetCore.Diagnostics.Resources.FormatRuntimeInfoPage_Title">
<summary>
Runtime Information
</summary>
</member>
<member name="P:Microsoft.AspNetCore.Diagnostics.Resources.WelcomeHeader">
<summary>
Welcome
</summary>
</member>
<member name="M:Microsoft.AspNetCore.Diagnostics.Resources.FormatWelcomeHeader">
<summary>
Welcome
</summary>
</member>
<member name="P:Microsoft.AspNetCore.Diagnostics.Resources.WelcomeLearnMicrosoftAspNet">
<summary>
Learn more about the Microsoft ASP.NET Core components
</summary>
</member>
<member name="M:Microsoft.AspNetCore.Diagnostics.Resources.FormatWelcomeLearnMicrosoftAspNet">
<summary>
Learn more about the Microsoft ASP.NET Core components
</summary>
</member>
<member name="P:Microsoft.AspNetCore.Diagnostics.Resources.WelcomePageImageText_Browser">
<summary>
Browser
</summary>
</member>
<member name="M:Microsoft.AspNetCore.Diagnostics.Resources.FormatWelcomePageImageText_Browser">
<summary>
Browser
</summary>
</member>
<member name="P:Microsoft.AspNetCore.Diagnostics.Resources.WelcomePageImageText_LearnMore">
<summary>
Learn More
</summary>
</member>
<member name="M:Microsoft.AspNetCore.Diagnostics.Resources.FormatWelcomePageImageText_LearnMore">
<summary>
Learn More
</summary>
</member>
<member name="P:Microsoft.AspNetCore.Diagnostics.Resources.WelcomePageImageText_LightBulb">
<summary>
Light Bulb
</summary>
</member>
<member name="M:Microsoft.AspNetCore.Diagnostics.Resources.FormatWelcomePageImageText_LightBulb">
<summary>
Light Bulb
</summary>
</member>
<member name="P:Microsoft.AspNetCore.Diagnostics.Resources.WelcomePageImageText_Skyline">
<summary>
Skyline
</summary>
</member>
<member name="M:Microsoft.AspNetCore.Diagnostics.Resources.FormatWelcomePageImageText_Skyline">
<summary>
Skyline
</summary>
</member>
<member name="P:Microsoft.AspNetCore.Diagnostics.Resources.WelcomeStarted">
<summary>
Your ASP.NET Core application has been successfully started
</summary>
</member>
<member name="M:Microsoft.AspNetCore.Diagnostics.Resources.FormatWelcomeStarted">
<summary>
Your ASP.NET Core application has been successfully started
</summary>
</member>
<member name="P:Microsoft.AspNetCore.Diagnostics.Resources.WelcomeTitle">
<summary>
Your ASP.NET Core application has been successfully started.
</summary>
</member>
<member name="M:Microsoft.AspNetCore.Diagnostics.Resources.FormatWelcomeTitle">
<summary>
Your ASP.NET Core application has been successfully started.
</summary>
</member>
<member name="P:Microsoft.AspNetCore.Diagnostics.Resources.ErrorPageHtml_CompilationException">
<summary>
An error occurred during the compilation of a resource required to process this request. Please review the following specific error details and modify your source code appropriately.
</summary>
</member>
<member name="M:Microsoft.AspNetCore.Diagnostics.Resources.FormatErrorPageHtml_CompilationException">
<summary>
An error occurred during the compilation of a resource required to process this request. Please review the following specific error details and modify your source code appropriately.
</summary>
</member>
<member name="P:Microsoft.AspNetCore.Diagnostics.Resources.RuntimeInfoPage_OperatingSystem">
<summary>
Operating System:
</summary>
</member>
<member name="M:Microsoft.AspNetCore.Diagnostics.Resources.FormatRuntimeInfoPage_OperatingSystem">
<summary>
Operating System:
</summary>
</member>
<member name="P:Microsoft.AspNetCore.Diagnostics.Resources.RuntimeInfoPage_RuntimeArchitecture">
<summary>
Runtime Architecture:
</summary>
</member>
<member name="M:Microsoft.AspNetCore.Diagnostics.Resources.FormatRuntimeInfoPage_RuntimeArchitecture">
<summary>
Runtime Architecture:
</summary>
</member>
<member name="P:Microsoft.AspNetCore.Diagnostics.Resources.RuntimeInfoPage_RuntimeType">
<summary>
Runtime Type:
</summary>
</member>
<member name="M:Microsoft.AspNetCore.Diagnostics.Resources.FormatRuntimeInfoPage_RuntimeType">
<summary>
Runtime Type:
</summary>
</member>
<member name="P:Microsoft.AspNetCore.Diagnostics.Resources.RuntimeInfoPage_OperatingSystemFail">
<summary>
Could not determine the operating system.
</summary>
</member>
<member name="M:Microsoft.AspNetCore.Diagnostics.Resources.FormatRuntimeInfoPage_OperatingSystemFail">
<summary>
Could not determine the operating system.
</summary>
</member>
<member name="P:Microsoft.AspNetCore.Diagnostics.Resources.RuntimeInfoPage_RuntimeArchitectureFail">
<summary>
Could not determine the runtime architecture.
</summary>
</member>
<member name="M:Microsoft.AspNetCore.Diagnostics.Resources.FormatRuntimeInfoPage_RuntimeArchitectureFail">
<summary>
Could not determine the runtime architecture.
</summary>
</member>
<member name="P:Microsoft.AspNetCore.Diagnostics.Resources.RuntimeInfoPage_RuntimeTypeFail">
<summary>
Could not determine the runtime type.
</summary>
</member>
<member name="M:Microsoft.AspNetCore.Diagnostics.Resources.FormatRuntimeInfoPage_RuntimeTypeFail">
<summary>
Could not determine the runtime type.
</summary>
</member>
<member name="P:Microsoft.AspNetCore.Diagnostics.Resources.RuntimeInfoPage_Environment">
<summary>
Environment:
</summary>
</member>
<member name="M:Microsoft.AspNetCore.Diagnostics.Resources.FormatRuntimeInfoPage_Environment">
<summary>
Environment:
</summary>
</member>
<member name="P:Microsoft.AspNetCore.Diagnostics.Resources.ExceptionHandlerOptions_NotConfiguredCorrectly">
<summary>
An error occurred when configuring the exception handler middleware. Either the 'ExceptionHandlingPath' or the 'ExceptionHandler' option must be set in 'UseExceptionHandler()'.
</summary>
</member>
<member name="M:Microsoft.AspNetCore.Diagnostics.Resources.FormatExceptionHandlerOptions_NotConfiguredCorrectly">
<summary>
An error occurred when configuring the exception handler middleware. Either the 'ExceptionHandlingPath' or the 'ExceptionHandler' option must be set in 'UseExceptionHandler()'.
</summary>
</member>
<member name="T:Microsoft.AspNetCore.Diagnostics.StatusCodePagesFeature">
<summary>
Represents the Status code pages feature.
</summary>
</member>
<member name="T:Microsoft.AspNetCore.Diagnostics.WelcomePageMiddleware">
<summary>
This middleware provides a default web page for new applications.
</summary>
</member>
<member name="M:Microsoft.AspNetCore.Diagnostics.WelcomePageMiddleware.#ctor(Microsoft.AspNetCore.Http.RequestDelegate,Microsoft.Extensions.Options.IOptions{Microsoft.AspNetCore.Builder.WelcomePageOptions})">
<summary>
Creates a default web page for new applications.
</summary>
<param name="next"></param>
<param name="options"></param>
</member>
<member name="M:Microsoft.AspNetCore.Diagnostics.WelcomePageMiddleware.Invoke(Microsoft.AspNetCore.Http.HttpContext)">
<summary>
Process an individual request.
</summary>
<param name="context">The <see cref="T:Microsoft.AspNetCore.Http.HttpContext"/>.</param>
<returns></returns>
</member>
<member name="T:Microsoft.AspNetCore.DiagnosticsViewPage.Views.BaseView">
<summary>
Infrastructure
</summary>
</member>
<member name="P:Microsoft.AspNetCore.DiagnosticsViewPage.Views.BaseView.Context">
<summary>
The request context
</summary>
</member>
<member name="P:Microsoft.AspNetCore.DiagnosticsViewPage.Views.BaseView.Request">
<summary>
The request
</summary>
</member>
<member name="P:Microsoft.AspNetCore.DiagnosticsViewPage.Views.BaseView.Response">
<summary>
The response
</summary>
</member>
<member name="P:Microsoft.AspNetCore.DiagnosticsViewPage.Views.BaseView.Output">
<summary>
The output stream
</summary>
</member>
<member name="P:Microsoft.AspNetCore.DiagnosticsViewPage.Views.BaseView.HtmlEncoder">
<summary>
Html encoder used to encode content.
</summary>
</member>
<member name="P:Microsoft.AspNetCore.DiagnosticsViewPage.Views.BaseView.UrlEncoder">
<summary>
Url encoder used to encode content.
</summary>
</member>
<member name="P:Microsoft.AspNetCore.DiagnosticsViewPage.Views.BaseView.JavaScriptEncoder">
<summary>
JavaScript encoder used to encode content.
</summary>
</member>
<member name="M:Microsoft.AspNetCore.DiagnosticsViewPage.Views.BaseView.ExecuteAsync(Microsoft.AspNetCore.Http.HttpContext)">
<summary>
Execute an individual request
</summary>
<param name="context"></param>
</member>
<member name="M:Microsoft.AspNetCore.DiagnosticsViewPage.Views.BaseView.ExecuteAsync">
<summary>
Execute an individual request
</summary>
</member>
<member name="M:Microsoft.AspNetCore.DiagnosticsViewPage.Views.BaseView.WriteLiteral(System.String)">
<summary>
Write the given value directly to the output
</summary>
<param name="value"></param>
</member>
<member name="M:Microsoft.AspNetCore.DiagnosticsViewPage.Views.BaseView.WriteLiteral(System.Object)">
<summary>
Write the given value directly to the output
</summary>
<param name="value"></param>
</member>
<member name="M:Microsoft.AspNetCore.DiagnosticsViewPage.Views.BaseView.WriteAttributeTo(System.IO.TextWriter,System.String,System.String,System.String,Microsoft.AspNetCore.DiagnosticsViewPage.Views.AttributeValue[])">
<summary>
Writes the given attribute to the given writer
</summary>
<param name="writer">The <see cref="T:System.IO.TextWriter"/> instance to write to.</param>
<param name="name">The name of the attribute to write</param>
<param name="leader">The value of the prefix</param>
<param name="trailer">The value of the suffix</param>
<param name="values">The <see cref="T:Microsoft.AspNetCore.DiagnosticsViewPage.Views.AttributeValue"/>s to write.</param>
</member>
<member name="M:Microsoft.AspNetCore.DiagnosticsViewPage.Views.BaseView.Write(System.Object)">
<summary>
Convert to string and html encode
</summary>
<param name="value"></param>
</member>
<member name="M:Microsoft.AspNetCore.DiagnosticsViewPage.Views.BaseView.Write(System.String)">
<summary>
Html encode and write
</summary>
<param name="value"></param>
</member>
<member name="M:Microsoft.AspNetCore.DiagnosticsViewPage.Views.BaseView.Write(Microsoft.AspNetCore.DiagnosticsViewPage.Views.HelperResult)">
<summary>
<see cref="M:Microsoft.AspNetCore.DiagnosticsViewPage.Views.HelperResult.WriteTo(System.IO.TextWriter)"/> is invoked
</summary>
<param name="result">The <see cref="T:Microsoft.AspNetCore.DiagnosticsViewPage.Views.HelperResult"/> to invoke</param>
</member>
<member name="M:Microsoft.AspNetCore.DiagnosticsViewPage.Views.BaseView.WriteTo(System.IO.TextWriter,System.Object)">
<summary>
Writes the specified <paramref name="value"/> to <paramref name="writer"/>.
</summary>
<param name="writer">The <see cref="T:System.IO.TextWriter"/> instance to write to.</param>
<param name="value">The <see cref="T:System.Object"/> to write.</param>
<remarks>
<see cref="M:Microsoft.AspNetCore.DiagnosticsViewPage.Views.HelperResult.WriteTo(System.IO.TextWriter)"/> is invoked for <see cref="T:Microsoft.AspNetCore.DiagnosticsViewPage.Views.HelperResult"/> types.
For all other types, the encoded result of <see cref="M:System.Object.ToString"/> is written to the
<paramref name="writer"/>.
</remarks>
</member>
<member name="M:Microsoft.AspNetCore.DiagnosticsViewPage.Views.BaseView.WriteTo(System.IO.TextWriter,System.String)">
<summary>
Writes the specified <paramref name="value"/> with HTML encoding to <paramref name="writer"/>.
</summary>
<param name="writer">The <see cref="T:System.IO.TextWriter"/> instance to write to.</param>
<param name="value">The <see cref="T:System.String"/> to write.</param>
</member>
<member name="M:Microsoft.AspNetCore.DiagnosticsViewPage.Views.BaseView.WriteLiteralTo(System.IO.TextWriter,System.Object)">
<summary>
Writes the specified <paramref name="value"/> without HTML encoding to the <paramref name="writer"/>.
</summary>
<param name="writer">The <see cref="T:System.IO.TextWriter"/> instance to write to.</param>
<param name="value">The <see cref="T:System.Object"/> to write.</param>
</member>
<member name="M:Microsoft.AspNetCore.DiagnosticsViewPage.Views.BaseView.WriteLiteralTo(System.IO.TextWriter,System.String)">
<summary>
Writes the specified <paramref name="value"/> without HTML encoding to <see cref="P:Microsoft.AspNetCore.DiagnosticsViewPage.Views.BaseView.Output"/>.
</summary>
<param name="writer">The <see cref="T:System.IO.TextWriter"/> instance to write to.</param>
<param name="value">The <see cref="T:System.String"/> to write.</param>
</member>
<member name="T:Microsoft.AspNetCore.DiagnosticsViewPage.Views.HelperResult">
<summary>
Represents a deferred write operation in a <see cref="T:Microsoft.AspNetCore.DiagnosticsViewPage.Views.BaseView"/>.
</summary>
</member>
<member name="M:Microsoft.AspNetCore.DiagnosticsViewPage.Views.HelperResult.#ctor(System.Action{System.IO.TextWriter})">
<summary>
Creates a new instance of <see cref="T:Microsoft.AspNetCore.DiagnosticsViewPage.Views.HelperResult"/>.
</summary>
<param name="action">The delegate to invoke when <see cref="M:Microsoft.AspNetCore.DiagnosticsViewPage.Views.HelperResult.WriteTo(System.IO.TextWriter)"/> is called.</param>
</member>
<member name="M:Microsoft.AspNetCore.DiagnosticsViewPage.Views.HelperResult.WriteTo(System.IO.TextWriter)">
<summary>
Method invoked to produce content from the <see cref="T:Microsoft.AspNetCore.DiagnosticsViewPage.Views.HelperResult"/>.
</summary>
<param name="writer">The <see cref="T:System.IO.TextWriter"/> instance to write to.</param>
</member>
</members>
</doc>