HttpLoggingServiceExtensions.UseHttpLoggingMiddleware Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Registers incoming HTTP request logging middleware into IApplicationBuilder.
public static Microsoft.AspNetCore.Builder.IApplicationBuilder UseHttpLoggingMiddleware (this Microsoft.AspNetCore.Builder.IApplicationBuilder builder);
static member UseHttpLoggingMiddleware : Microsoft.AspNetCore.Builder.IApplicationBuilder -> Microsoft.AspNetCore.Builder.IApplicationBuilder
<Extension()>
Public Function UseHttpLoggingMiddleware (builder As IApplicationBuilder) As IApplicationBuilder
Parameters
- builder
- IApplicationBuilder
An application's request pipeline builder.
Returns
The IApplicationBuilder so that additional calls can be chained.
Exceptions
builder
is null
.
Remarks
Request logging middleware should be placed after UseRouting(IApplicationBuilder) call.