8 writes to LoggingFields
Microsoft.AspNetCore.Diagnostics.Middleware (1)
Logging\HttpLoggingServiceCollectionExtensions.cs (1)
45
o.
LoggingFields
|= HttpLoggingFields.Duration;
Microsoft.AspNetCore.Diagnostics.Middleware.Tests (7)
Logging\AcceptanceTests.cs (7)
210
x.
LoggingFields
|= HttpLoggingFields.ResponseBody;
270
x.
LoggingFields
|= HttpLoggingFields.RequestBody;
323
x.
LoggingFields
|= HttpLoggingFields.RequestBody;
368
x.
LoggingFields
= HttpLoggingFields.All;
686
x.
LoggingFields
|= HttpLoggingFields.RequestBody | HttpLoggingFields.ResponseBody;
720
static services => services.AddHttpLogging(static x => x.
LoggingFields
&= ~HttpLoggingFields.ResponseBody)
961
o.
LoggingFields
= HttpLoggingFields.None;
2 references to LoggingFields
Microsoft.AspNetCore.HttpLogging (2)
HttpLoggingInterceptorContext.cs (1)
43
/// This is pre-populated with the value from <see cref="HttpLoggingOptions.
LoggingFields
"/>,
HttpLoggingMiddleware.cs (1)
63
var loggingFields = loggingAttribute?.LoggingFields ?? options.
LoggingFields
;