File tree Expand file tree Collapse file tree 1 file changed +8
-0
lines changed
src/Middleware/HttpLogging/src Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -138,12 +138,20 @@ public enum HttpLoggingFields : long
138
138
/// including <see cref="RequestPath"/>, <see cref="RequestProtocol"/>,
139
139
/// <see cref="RequestMethod"/>, and <see cref="RequestScheme"/>.
140
140
/// </summary>
141
+ /// <remarks>
142
+ /// The HTTP Request <see cref="HttpRequest.QueryString"/> is not included with this flag as it may contain private information.
143
+ /// If desired, it should be explicitly specified with <see cref="RequestQuery"/>.
144
+ /// </remarks>
141
145
RequestProperties = RequestPath | RequestProtocol | RequestMethod | RequestScheme ,
142
146
143
147
/// <summary>
144
148
/// Flag for logging HTTP Request properties and headers.
145
149
/// Includes <see cref="RequestProperties"/> and <see cref="RequestHeaders"/>
146
150
/// </summary>
151
+ /// <remarks>
152
+ /// The HTTP Request <see cref="HttpRequest.QueryString"/> is not included with this flag as it may contain private information.
153
+ /// If desired, it should be explicitly specified with <see cref="RequestQuery"/>.
154
+ /// </remarks>
147
155
RequestPropertiesAndHeaders = RequestProperties | RequestHeaders ,
148
156
149
157
/// <summary>
You can’t perform that action at this time.
0 commit comments