6 references to Request
HttpLogging.Sample (1)
SampleHttpLoggingInterceptor.cs (1)
19if (!logContext.IsAnyEnabled(HttpLoggingFields.Request))
Microsoft.AspNetCore.HttpLogging (2)
HttpLoggingFields.cs (2)
192/// Includes <see cref="Request"/>, <see cref="Response"/>, and <see cref="Duration"/>. 201All = Request | Response | Duration
Microsoft.AspNetCore.HttpLogging.Tests (3)
HttpLoggingMiddlewareTests.cs (3)
148options.CurrentValue.LoggingFields = HttpLoggingFields.Request; 2056endpoint.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));