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