6 references to Request
HttpLogging.Sample (1)
SampleHttpLoggingInterceptor.cs (1)
19
if (!logContext.IsAnyEnabled(HttpLoggingFields.
Request
))
Microsoft.AspNetCore.HttpLogging (2)
HttpLoggingFields.cs (2)
192
/// Includes <see cref="
Request
"/>, <see cref="Response"/>, and <see cref="Duration"/>.
201
All =
Request
| Response | Duration
Microsoft.AspNetCore.HttpLogging.Tests (3)
HttpLoggingMiddlewareTests.cs (3)
148
options.CurrentValue.LoggingFields = HttpLoggingFields.
Request
;
2056
endpoint.MapGet("/attr_restrictedheaders", [HttpLogging((HttpLoggingFields.
Request
& ~HttpLoggingFields.RequestScheme) | (HttpLoggingFields.Response & ~HttpLoggingFields.ResponseStatusCode))] async (HttpContext c) =>
2066
}).WithHttpLogging((HttpLoggingFields.
Request
& ~HttpLoggingFields.RequestScheme) | (HttpLoggingFields.Response & ~HttpLoggingFields.ResponseStatusCode));