File tree 1 file changed +8
-0
lines changed
src/Middleware/HttpLogging/src 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -158,6 +158,10 @@ public enum HttpLoggingFields : long
158
158
/// Logging the request body has performance implications, as it requires buffering
159
159
/// the entire request body up to <see cref="HttpLoggingOptions.RequestBodyLogLimit"/>.
160
160
/// </summary>
161
+ /// <remarks>
162
+ /// The HTTP Request <see cref="HttpRequest.QueryString"/> is not included with this flag as it may contain private information.
163
+ /// If desired, it should be explicitly specified with <see cref="RequestQuery"/>.
164
+ /// </remarks>
161
165
Request = RequestPropertiesAndHeaders | RequestBody ,
162
166
163
167
/// <summary>
@@ -175,5 +179,9 @@ public enum HttpLoggingFields : long
175
179
/// the entire request and response body up to the <see cref="HttpLoggingOptions.RequestBodyLogLimit"/>
176
180
/// and <see cref="HttpLoggingOptions.ResponseBodyLogLimit"/>.
177
181
/// </summary>
182
+ /// <remarks>
183
+ /// The HTTP Request <see cref="HttpRequest.QueryString"/> is not included with this flag as it may contain private information.
184
+ /// If desired, it should be explicitly specified with <see cref="RequestQuery"/>.
185
+ /// </remarks>
178
186
All = Request | Response
179
187
}
You can’t perform that action at this time.
0 commit comments