cache nuget packages
This commit is contained in:
@@ -0,0 +1,96 @@
|
||||
<?xml version="1.0"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>Serilog.AspNetCore</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:Serilog.AspNetCore.RequestLoggingOptions">
|
||||
<summary>
|
||||
Contains options for the <see cref="T:Serilog.AspNetCore.RequestLoggingMiddleware"/>.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Serilog.AspNetCore.RequestLoggingOptions.MessageTemplate">
|
||||
<summary>
|
||||
Gets or sets the message template. The default value is
|
||||
<c>"HTTP {RequestMethod} {RequestPath} responded {StatusCode} in {Elapsed:0.0000} ms"</c>. The
|
||||
template can contain any of the placeholders from the default template, names of properties
|
||||
added by ASP.NET Core, and names of properties added to the <see cref="T:Serilog.IDiagnosticContext"/>.
|
||||
</summary>
|
||||
<value>
|
||||
The message template.
|
||||
</value>
|
||||
</member>
|
||||
<member name="P:Serilog.AspNetCore.RequestLoggingOptions.GetLevel">
|
||||
<summary>
|
||||
A function returning the <see cref="T:Serilog.Events.LogEventLevel"/> based on the <see cref="T:Microsoft.AspNetCore.Http.HttpContext"/>, the number of
|
||||
elapsed milliseconds required for handling the request, and an <see cref="T:System.Exception" /> if one was thrown.
|
||||
The default behavior returns <see cref="F:Serilog.Events.LogEventLevel.Error"/> when the response status code is greater than 499 or if the
|
||||
<see cref="T:System.Exception"/> is not null.
|
||||
</summary>
|
||||
<value>
|
||||
A function returning the <see cref="T:Serilog.Events.LogEventLevel"/>.
|
||||
</value>
|
||||
</member>
|
||||
<member name="P:Serilog.AspNetCore.RequestLoggingOptions.EnrichDiagnosticContext">
|
||||
<summary>
|
||||
A callback that can be used to set additional properties on the request completion event.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Serilog.AspNetCore.RequestLoggingOptions.Logger">
|
||||
<summary>
|
||||
The logger through which request completion events will be logged. The default is to use the
|
||||
static <see cref="T:Serilog.Log"/> class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Serilog.AspNetCore.RequestLoggingOptions.IncludeQueryInRequestPath">
|
||||
<summary>
|
||||
Include the full URL query string in the <c>RequestPath</c> property
|
||||
that is attached to request log events. The default is <c>false</c>.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Serilog.AspNetCore.RequestLoggingOptions.GetMessageTemplateProperties">
|
||||
<summary>
|
||||
A function to specify the values of the MessageTemplateProperties.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Serilog.AspNetCore.RequestLoggingOptions.#ctor">
|
||||
<summary>
|
||||
Constructor
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Serilog.SerilogApplicationBuilderExtensions">
|
||||
<summary>
|
||||
Extends <see cref="T:Microsoft.AspNetCore.Builder.IApplicationBuilder"/> with methods for configuring Serilog features.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Serilog.SerilogApplicationBuilderExtensions.UseSerilogRequestLogging(Microsoft.AspNetCore.Builder.IApplicationBuilder,System.String)">
|
||||
<summary>
|
||||
Adds middleware for streamlined request logging. Instead of writing HTTP request information
|
||||
like method, path, timing, status code and exception details
|
||||
in several events, this middleware collects information during the request (including from
|
||||
<see cref="T:Serilog.IDiagnosticContext"/>), and writes a single event at request completion. Add this
|
||||
in <c>Startup.cs</c> before any handlers whose activities should be logged.
|
||||
</summary>
|
||||
<param name="app">The application builder.</param>
|
||||
<param name="messageTemplate">The message template to use when logging request completion
|
||||
events. The default is
|
||||
<c>"HTTP {RequestMethod} {RequestPath} responded {StatusCode} in {Elapsed:0.0000} ms"</c>. The
|
||||
template can contain any of the placeholders from the default template, names of properties
|
||||
added by ASP.NET Core, and names of properties added to the <see cref="T:Serilog.IDiagnosticContext"/>.
|
||||
</param>
|
||||
<returns>The application builder.</returns>
|
||||
</member>
|
||||
<member name="M:Serilog.SerilogApplicationBuilderExtensions.UseSerilogRequestLogging(Microsoft.AspNetCore.Builder.IApplicationBuilder,System.Action{Serilog.AspNetCore.RequestLoggingOptions})">
|
||||
<summary>
|
||||
Adds middleware for streamlined request logging. Instead of writing HTTP request information
|
||||
like method, path, timing, status code and exception details
|
||||
in several events, this middleware collects information during the request (including from
|
||||
<see cref="T:Serilog.IDiagnosticContext"/>), and writes a single event at request completion. Add this
|
||||
in <c>Startup.cs</c> before any handlers whose activities should be logged.
|
||||
</summary>
|
||||
<param name="app">The application builder.</param>
|
||||
<param name="configureOptions">A <see cref="T:System.Action`1" /> to configure the provided <see cref="T:Serilog.AspNetCore.RequestLoggingOptions" />.</param>
|
||||
<returns>The application builder.</returns>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
||||
@@ -0,0 +1,96 @@
|
||||
<?xml version="1.0"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>Serilog.AspNetCore</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:Serilog.AspNetCore.RequestLoggingOptions">
|
||||
<summary>
|
||||
Contains options for the <see cref="T:Serilog.AspNetCore.RequestLoggingMiddleware"/>.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Serilog.AspNetCore.RequestLoggingOptions.MessageTemplate">
|
||||
<summary>
|
||||
Gets or sets the message template. The default value is
|
||||
<c>"HTTP {RequestMethod} {RequestPath} responded {StatusCode} in {Elapsed:0.0000} ms"</c>. The
|
||||
template can contain any of the placeholders from the default template, names of properties
|
||||
added by ASP.NET Core, and names of properties added to the <see cref="T:Serilog.IDiagnosticContext"/>.
|
||||
</summary>
|
||||
<value>
|
||||
The message template.
|
||||
</value>
|
||||
</member>
|
||||
<member name="P:Serilog.AspNetCore.RequestLoggingOptions.GetLevel">
|
||||
<summary>
|
||||
A function returning the <see cref="T:Serilog.Events.LogEventLevel"/> based on the <see cref="T:Microsoft.AspNetCore.Http.HttpContext"/>, the number of
|
||||
elapsed milliseconds required for handling the request, and an <see cref="T:System.Exception" /> if one was thrown.
|
||||
The default behavior returns <see cref="F:Serilog.Events.LogEventLevel.Error"/> when the response status code is greater than 499 or if the
|
||||
<see cref="T:System.Exception"/> is not null.
|
||||
</summary>
|
||||
<value>
|
||||
A function returning the <see cref="T:Serilog.Events.LogEventLevel"/>.
|
||||
</value>
|
||||
</member>
|
||||
<member name="P:Serilog.AspNetCore.RequestLoggingOptions.EnrichDiagnosticContext">
|
||||
<summary>
|
||||
A callback that can be used to set additional properties on the request completion event.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Serilog.AspNetCore.RequestLoggingOptions.Logger">
|
||||
<summary>
|
||||
The logger through which request completion events will be logged. The default is to use the
|
||||
static <see cref="T:Serilog.Log"/> class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Serilog.AspNetCore.RequestLoggingOptions.IncludeQueryInRequestPath">
|
||||
<summary>
|
||||
Include the full URL query string in the <c>RequestPath</c> property
|
||||
that is attached to request log events. The default is <c>false</c>.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Serilog.AspNetCore.RequestLoggingOptions.GetMessageTemplateProperties">
|
||||
<summary>
|
||||
A function to specify the values of the MessageTemplateProperties.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Serilog.AspNetCore.RequestLoggingOptions.#ctor">
|
||||
<summary>
|
||||
Constructor
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Serilog.SerilogApplicationBuilderExtensions">
|
||||
<summary>
|
||||
Extends <see cref="T:Microsoft.AspNetCore.Builder.IApplicationBuilder"/> with methods for configuring Serilog features.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Serilog.SerilogApplicationBuilderExtensions.UseSerilogRequestLogging(Microsoft.AspNetCore.Builder.IApplicationBuilder,System.String)">
|
||||
<summary>
|
||||
Adds middleware for streamlined request logging. Instead of writing HTTP request information
|
||||
like method, path, timing, status code and exception details
|
||||
in several events, this middleware collects information during the request (including from
|
||||
<see cref="T:Serilog.IDiagnosticContext"/>), and writes a single event at request completion. Add this
|
||||
in <c>Startup.cs</c> before any handlers whose activities should be logged.
|
||||
</summary>
|
||||
<param name="app">The application builder.</param>
|
||||
<param name="messageTemplate">The message template to use when logging request completion
|
||||
events. The default is
|
||||
<c>"HTTP {RequestMethod} {RequestPath} responded {StatusCode} in {Elapsed:0.0000} ms"</c>. The
|
||||
template can contain any of the placeholders from the default template, names of properties
|
||||
added by ASP.NET Core, and names of properties added to the <see cref="T:Serilog.IDiagnosticContext"/>.
|
||||
</param>
|
||||
<returns>The application builder.</returns>
|
||||
</member>
|
||||
<member name="M:Serilog.SerilogApplicationBuilderExtensions.UseSerilogRequestLogging(Microsoft.AspNetCore.Builder.IApplicationBuilder,System.Action{Serilog.AspNetCore.RequestLoggingOptions})">
|
||||
<summary>
|
||||
Adds middleware for streamlined request logging. Instead of writing HTTP request information
|
||||
like method, path, timing, status code and exception details
|
||||
in several events, this middleware collects information during the request (including from
|
||||
<see cref="T:Serilog.IDiagnosticContext"/>), and writes a single event at request completion. Add this
|
||||
in <c>Startup.cs</c> before any handlers whose activities should be logged.
|
||||
</summary>
|
||||
<param name="app">The application builder.</param>
|
||||
<param name="configureOptions">A <see cref="T:System.Action`1" /> to configure the provided <see cref="T:Serilog.AspNetCore.RequestLoggingOptions" />.</param>
|
||||
<returns>The application builder.</returns>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
||||
@@ -0,0 +1,96 @@
|
||||
<?xml version="1.0"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>Serilog.AspNetCore</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:Serilog.AspNetCore.RequestLoggingOptions">
|
||||
<summary>
|
||||
Contains options for the <see cref="T:Serilog.AspNetCore.RequestLoggingMiddleware"/>.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Serilog.AspNetCore.RequestLoggingOptions.MessageTemplate">
|
||||
<summary>
|
||||
Gets or sets the message template. The default value is
|
||||
<c>"HTTP {RequestMethod} {RequestPath} responded {StatusCode} in {Elapsed:0.0000} ms"</c>. The
|
||||
template can contain any of the placeholders from the default template, names of properties
|
||||
added by ASP.NET Core, and names of properties added to the <see cref="T:Serilog.IDiagnosticContext"/>.
|
||||
</summary>
|
||||
<value>
|
||||
The message template.
|
||||
</value>
|
||||
</member>
|
||||
<member name="P:Serilog.AspNetCore.RequestLoggingOptions.GetLevel">
|
||||
<summary>
|
||||
A function returning the <see cref="T:Serilog.Events.LogEventLevel"/> based on the <see cref="T:Microsoft.AspNetCore.Http.HttpContext"/>, the number of
|
||||
elapsed milliseconds required for handling the request, and an <see cref="T:System.Exception" /> if one was thrown.
|
||||
The default behavior returns <see cref="F:Serilog.Events.LogEventLevel.Error"/> when the response status code is greater than 499 or if the
|
||||
<see cref="T:System.Exception"/> is not null.
|
||||
</summary>
|
||||
<value>
|
||||
A function returning the <see cref="T:Serilog.Events.LogEventLevel"/>.
|
||||
</value>
|
||||
</member>
|
||||
<member name="P:Serilog.AspNetCore.RequestLoggingOptions.EnrichDiagnosticContext">
|
||||
<summary>
|
||||
A callback that can be used to set additional properties on the request completion event.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Serilog.AspNetCore.RequestLoggingOptions.Logger">
|
||||
<summary>
|
||||
The logger through which request completion events will be logged. The default is to use the
|
||||
static <see cref="T:Serilog.Log"/> class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Serilog.AspNetCore.RequestLoggingOptions.IncludeQueryInRequestPath">
|
||||
<summary>
|
||||
Include the full URL query string in the <c>RequestPath</c> property
|
||||
that is attached to request log events. The default is <c>false</c>.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Serilog.AspNetCore.RequestLoggingOptions.GetMessageTemplateProperties">
|
||||
<summary>
|
||||
A function to specify the values of the MessageTemplateProperties.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Serilog.AspNetCore.RequestLoggingOptions.#ctor">
|
||||
<summary>
|
||||
Constructor
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Serilog.SerilogApplicationBuilderExtensions">
|
||||
<summary>
|
||||
Extends <see cref="T:Microsoft.AspNetCore.Builder.IApplicationBuilder"/> with methods for configuring Serilog features.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Serilog.SerilogApplicationBuilderExtensions.UseSerilogRequestLogging(Microsoft.AspNetCore.Builder.IApplicationBuilder,System.String)">
|
||||
<summary>
|
||||
Adds middleware for streamlined request logging. Instead of writing HTTP request information
|
||||
like method, path, timing, status code and exception details
|
||||
in several events, this middleware collects information during the request (including from
|
||||
<see cref="T:Serilog.IDiagnosticContext"/>), and writes a single event at request completion. Add this
|
||||
in <c>Startup.cs</c> before any handlers whose activities should be logged.
|
||||
</summary>
|
||||
<param name="app">The application builder.</param>
|
||||
<param name="messageTemplate">The message template to use when logging request completion
|
||||
events. The default is
|
||||
<c>"HTTP {RequestMethod} {RequestPath} responded {StatusCode} in {Elapsed:0.0000} ms"</c>. The
|
||||
template can contain any of the placeholders from the default template, names of properties
|
||||
added by ASP.NET Core, and names of properties added to the <see cref="T:Serilog.IDiagnosticContext"/>.
|
||||
</param>
|
||||
<returns>The application builder.</returns>
|
||||
</member>
|
||||
<member name="M:Serilog.SerilogApplicationBuilderExtensions.UseSerilogRequestLogging(Microsoft.AspNetCore.Builder.IApplicationBuilder,System.Action{Serilog.AspNetCore.RequestLoggingOptions})">
|
||||
<summary>
|
||||
Adds middleware for streamlined request logging. Instead of writing HTTP request information
|
||||
like method, path, timing, status code and exception details
|
||||
in several events, this middleware collects information during the request (including from
|
||||
<see cref="T:Serilog.IDiagnosticContext"/>), and writes a single event at request completion. Add this
|
||||
in <c>Startup.cs</c> before any handlers whose activities should be logged.
|
||||
</summary>
|
||||
<param name="app">The application builder.</param>
|
||||
<param name="configureOptions">A <see cref="T:System.Action`1" /> to configure the provided <see cref="T:Serilog.AspNetCore.RequestLoggingOptions" />.</param>
|
||||
<returns>The application builder.</returns>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
||||
@@ -0,0 +1,96 @@
|
||||
<?xml version="1.0"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>Serilog.AspNetCore</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:Serilog.AspNetCore.RequestLoggingOptions">
|
||||
<summary>
|
||||
Contains options for the <see cref="T:Serilog.AspNetCore.RequestLoggingMiddleware"/>.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Serilog.AspNetCore.RequestLoggingOptions.MessageTemplate">
|
||||
<summary>
|
||||
Gets or sets the message template. The default value is
|
||||
<c>"HTTP {RequestMethod} {RequestPath} responded {StatusCode} in {Elapsed:0.0000} ms"</c>. The
|
||||
template can contain any of the placeholders from the default template, names of properties
|
||||
added by ASP.NET Core, and names of properties added to the <see cref="T:Serilog.IDiagnosticContext"/>.
|
||||
</summary>
|
||||
<value>
|
||||
The message template.
|
||||
</value>
|
||||
</member>
|
||||
<member name="P:Serilog.AspNetCore.RequestLoggingOptions.GetLevel">
|
||||
<summary>
|
||||
A function returning the <see cref="T:Serilog.Events.LogEventLevel"/> based on the <see cref="T:Microsoft.AspNetCore.Http.HttpContext"/>, the number of
|
||||
elapsed milliseconds required for handling the request, and an <see cref="T:System.Exception" /> if one was thrown.
|
||||
The default behavior returns <see cref="F:Serilog.Events.LogEventLevel.Error"/> when the response status code is greater than 499 or if the
|
||||
<see cref="T:System.Exception"/> is not null.
|
||||
</summary>
|
||||
<value>
|
||||
A function returning the <see cref="T:Serilog.Events.LogEventLevel"/>.
|
||||
</value>
|
||||
</member>
|
||||
<member name="P:Serilog.AspNetCore.RequestLoggingOptions.EnrichDiagnosticContext">
|
||||
<summary>
|
||||
A callback that can be used to set additional properties on the request completion event.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Serilog.AspNetCore.RequestLoggingOptions.Logger">
|
||||
<summary>
|
||||
The logger through which request completion events will be logged. The default is to use the
|
||||
static <see cref="T:Serilog.Log"/> class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Serilog.AspNetCore.RequestLoggingOptions.IncludeQueryInRequestPath">
|
||||
<summary>
|
||||
Include the full URL query string in the <c>RequestPath</c> property
|
||||
that is attached to request log events. The default is <c>false</c>.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Serilog.AspNetCore.RequestLoggingOptions.GetMessageTemplateProperties">
|
||||
<summary>
|
||||
A function to specify the values of the MessageTemplateProperties.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Serilog.AspNetCore.RequestLoggingOptions.#ctor">
|
||||
<summary>
|
||||
Constructor
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Serilog.SerilogApplicationBuilderExtensions">
|
||||
<summary>
|
||||
Extends <see cref="T:Microsoft.AspNetCore.Builder.IApplicationBuilder"/> with methods for configuring Serilog features.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Serilog.SerilogApplicationBuilderExtensions.UseSerilogRequestLogging(Microsoft.AspNetCore.Builder.IApplicationBuilder,System.String)">
|
||||
<summary>
|
||||
Adds middleware for streamlined request logging. Instead of writing HTTP request information
|
||||
like method, path, timing, status code and exception details
|
||||
in several events, this middleware collects information during the request (including from
|
||||
<see cref="T:Serilog.IDiagnosticContext"/>), and writes a single event at request completion. Add this
|
||||
in <c>Startup.cs</c> before any handlers whose activities should be logged.
|
||||
</summary>
|
||||
<param name="app">The application builder.</param>
|
||||
<param name="messageTemplate">The message template to use when logging request completion
|
||||
events. The default is
|
||||
<c>"HTTP {RequestMethod} {RequestPath} responded {StatusCode} in {Elapsed:0.0000} ms"</c>. The
|
||||
template can contain any of the placeholders from the default template, names of properties
|
||||
added by ASP.NET Core, and names of properties added to the <see cref="T:Serilog.IDiagnosticContext"/>.
|
||||
</param>
|
||||
<returns>The application builder.</returns>
|
||||
</member>
|
||||
<member name="M:Serilog.SerilogApplicationBuilderExtensions.UseSerilogRequestLogging(Microsoft.AspNetCore.Builder.IApplicationBuilder,System.Action{Serilog.AspNetCore.RequestLoggingOptions})">
|
||||
<summary>
|
||||
Adds middleware for streamlined request logging. Instead of writing HTTP request information
|
||||
like method, path, timing, status code and exception details
|
||||
in several events, this middleware collects information during the request (including from
|
||||
<see cref="T:Serilog.IDiagnosticContext"/>), and writes a single event at request completion. Add this
|
||||
in <c>Startup.cs</c> before any handlers whose activities should be logged.
|
||||
</summary>
|
||||
<param name="app">The application builder.</param>
|
||||
<param name="configureOptions">A <see cref="T:System.Action`1" /> to configure the provided <see cref="T:Serilog.AspNetCore.RequestLoggingOptions" />.</param>
|
||||
<returns>The application builder.</returns>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
||||
@@ -0,0 +1,96 @@
|
||||
<?xml version="1.0"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>Serilog.AspNetCore</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:Serilog.AspNetCore.RequestLoggingOptions">
|
||||
<summary>
|
||||
Contains options for the <see cref="T:Serilog.AspNetCore.RequestLoggingMiddleware"/>.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Serilog.AspNetCore.RequestLoggingOptions.MessageTemplate">
|
||||
<summary>
|
||||
Gets or sets the message template. The default value is
|
||||
<c>"HTTP {RequestMethod} {RequestPath} responded {StatusCode} in {Elapsed:0.0000} ms"</c>. The
|
||||
template can contain any of the placeholders from the default template, names of properties
|
||||
added by ASP.NET Core, and names of properties added to the <see cref="T:Serilog.IDiagnosticContext"/>.
|
||||
</summary>
|
||||
<value>
|
||||
The message template.
|
||||
</value>
|
||||
</member>
|
||||
<member name="P:Serilog.AspNetCore.RequestLoggingOptions.GetLevel">
|
||||
<summary>
|
||||
A function returning the <see cref="T:Serilog.Events.LogEventLevel"/> based on the <see cref="T:Microsoft.AspNetCore.Http.HttpContext"/>, the number of
|
||||
elapsed milliseconds required for handling the request, and an <see cref="T:System.Exception" /> if one was thrown.
|
||||
The default behavior returns <see cref="F:Serilog.Events.LogEventLevel.Error"/> when the response status code is greater than 499 or if the
|
||||
<see cref="T:System.Exception"/> is not null.
|
||||
</summary>
|
||||
<value>
|
||||
A function returning the <see cref="T:Serilog.Events.LogEventLevel"/>.
|
||||
</value>
|
||||
</member>
|
||||
<member name="P:Serilog.AspNetCore.RequestLoggingOptions.EnrichDiagnosticContext">
|
||||
<summary>
|
||||
A callback that can be used to set additional properties on the request completion event.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Serilog.AspNetCore.RequestLoggingOptions.Logger">
|
||||
<summary>
|
||||
The logger through which request completion events will be logged. The default is to use the
|
||||
static <see cref="T:Serilog.Log"/> class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Serilog.AspNetCore.RequestLoggingOptions.IncludeQueryInRequestPath">
|
||||
<summary>
|
||||
Include the full URL query string in the <c>RequestPath</c> property
|
||||
that is attached to request log events. The default is <c>false</c>.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Serilog.AspNetCore.RequestLoggingOptions.GetMessageTemplateProperties">
|
||||
<summary>
|
||||
A function to specify the values of the MessageTemplateProperties.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Serilog.AspNetCore.RequestLoggingOptions.#ctor">
|
||||
<summary>
|
||||
Constructor
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Serilog.SerilogApplicationBuilderExtensions">
|
||||
<summary>
|
||||
Extends <see cref="T:Microsoft.AspNetCore.Builder.IApplicationBuilder"/> with methods for configuring Serilog features.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Serilog.SerilogApplicationBuilderExtensions.UseSerilogRequestLogging(Microsoft.AspNetCore.Builder.IApplicationBuilder,System.String)">
|
||||
<summary>
|
||||
Adds middleware for streamlined request logging. Instead of writing HTTP request information
|
||||
like method, path, timing, status code and exception details
|
||||
in several events, this middleware collects information during the request (including from
|
||||
<see cref="T:Serilog.IDiagnosticContext"/>), and writes a single event at request completion. Add this
|
||||
in <c>Startup.cs</c> before any handlers whose activities should be logged.
|
||||
</summary>
|
||||
<param name="app">The application builder.</param>
|
||||
<param name="messageTemplate">The message template to use when logging request completion
|
||||
events. The default is
|
||||
<c>"HTTP {RequestMethod} {RequestPath} responded {StatusCode} in {Elapsed:0.0000} ms"</c>. The
|
||||
template can contain any of the placeholders from the default template, names of properties
|
||||
added by ASP.NET Core, and names of properties added to the <see cref="T:Serilog.IDiagnosticContext"/>.
|
||||
</param>
|
||||
<returns>The application builder.</returns>
|
||||
</member>
|
||||
<member name="M:Serilog.SerilogApplicationBuilderExtensions.UseSerilogRequestLogging(Microsoft.AspNetCore.Builder.IApplicationBuilder,System.Action{Serilog.AspNetCore.RequestLoggingOptions})">
|
||||
<summary>
|
||||
Adds middleware for streamlined request logging. Instead of writing HTTP request information
|
||||
like method, path, timing, status code and exception details
|
||||
in several events, this middleware collects information during the request (including from
|
||||
<see cref="T:Serilog.IDiagnosticContext"/>), and writes a single event at request completion. Add this
|
||||
in <c>Startup.cs</c> before any handlers whose activities should be logged.
|
||||
</summary>
|
||||
<param name="app">The application builder.</param>
|
||||
<param name="configureOptions">A <see cref="T:System.Action`1" /> to configure the provided <see cref="T:Serilog.AspNetCore.RequestLoggingOptions" />.</param>
|
||||
<returns>The application builder.</returns>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
||||
Reference in New Issue
Block a user