6 references to RequestScheme
Microsoft.AspNetCore.HttpLogging (3)
HttpLoggingFields.cs (2)
146/// <see cref="RequestMethod"/>, and <see cref="RequestScheme"/>. 152RequestProperties = RequestPath | RequestProtocol | RequestMethod | RequestScheme,
HttpLoggingMiddleware.cs (1)
122if (loggingFields.HasFlag(HttpLoggingFields.RequestScheme))
Microsoft.AspNetCore.HttpLogging.Tests (3)
HttpLoggingEndpointConventionBuilderTests.cs (1)
16var loggingFields = HttpLoggingFields.RequestScheme | HttpLoggingFields.RequestPath;
HttpLoggingMiddlewareTests.cs (2)
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));