13 references to Response
HttpLogging.Sample (1)
SampleHttpLoggingInterceptor.cs (1)
58
if (!logContext.IsAnyEnabled(HttpLoggingFields.
Response
))
Microsoft.AspNetCore.Diagnostics.Middleware (1)
Logging\HttpLoggingRedactionInterceptor.cs (1)
146
|| (!logContext.IsAnyEnabled(HttpLoggingFields.
Response
) && logContext.Parameters.Count == 0))
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 (9)
HttpLoggingMiddlewareTests.cs (9)
837
options.CurrentValue.LoggingFields = HttpLoggingFields.
Response
;
883
options.CurrentValue.LoggingFields = HttpLoggingFields.
Response
;
907
options.CurrentValue.LoggingFields = HttpLoggingFields.
Response
;
1088
options.CurrentValue.LoggingFields = HttpLoggingFields.
Response
;
1126
options.CurrentValue.LoggingFields = HttpLoggingFields.
Response
;
2031
endpoint.MapGet("/attr_responseonly", [HttpLogging(HttpLoggingFields.
Response
)] async (HttpContext c) =>
2041
}).WithHttpLogging(HttpLoggingFields.
Response
);
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));