@@ -21,20 +21,20 @@ public enum HttpLoggingFields : long
21
21
/// <summary>
22
22
/// Flag for logging the HTTP Request Path, which includes both the <see cref="HttpRequest.Path"/>
23
23
/// and <see cref="HttpRequest.PathBase"/>.
24
- /// <p >
24
+ /// <para >
25
25
/// For example:
26
26
/// Path: /index
27
27
/// PathBase: /app
28
- /// </p >
28
+ /// </para >
29
29
/// </summary>
30
30
RequestPath = 0x1 ,
31
31
32
32
/// <summary>
33
33
/// Flag for logging the HTTP Request <see cref="HttpRequest.QueryString"/>.
34
- /// <p >
34
+ /// <para >
35
35
/// For example:
36
36
/// Query: ?index=1
37
- /// </p >
37
+ /// </para >
38
38
/// RequestQuery contents can contain private information
39
39
/// which may have regulatory concerns under GDPR
40
40
/// and other laws. RequestQuery should not be logged
@@ -45,37 +45,37 @@ public enum HttpLoggingFields : long
45
45
46
46
/// <summary>
47
47
/// Flag for logging the HTTP Request <see cref="HttpRequest.Protocol"/>.
48
- /// <p >
48
+ /// <para >
49
49
/// For example:
50
50
/// Protocol: HTTP/1.1
51
- /// </p >
51
+ /// </para >
52
52
/// </summary>
53
53
RequestProtocol = 0x4 ,
54
54
55
55
/// <summary>
56
56
/// Flag for logging the HTTP Request <see cref="HttpRequest.Method"/>.
57
- /// <p >
57
+ /// <para >
58
58
/// For example:
59
59
/// Method: GET
60
- /// </p >
60
+ /// </para >
61
61
/// </summary>
62
62
RequestMethod = 0x8 ,
63
63
64
64
/// <summary>
65
65
/// Flag for logging the HTTP Request <see cref="HttpRequest.Scheme"/>.
66
- /// <p >
66
+ /// <para >
67
67
/// For example:
68
68
/// Scheme: https
69
- /// </p >
69
+ /// </para >
70
70
/// </summary>
71
71
RequestScheme = 0x10 ,
72
72
73
73
/// <summary>
74
74
/// Flag for logging the HTTP Response <see cref="HttpResponse.StatusCode"/>.
75
- /// <p >
75
+ /// <para >
76
76
/// For example:
77
77
/// StatusCode: 200
78
- /// </p >
78
+ /// </para >
79
79
/// </summary>
80
80
ResponseStatusCode = 0x20 ,
81
81
@@ -84,11 +84,11 @@ public enum HttpLoggingFields : long
84
84
/// Request Headers are logged as soon as the middleware is invoked.
85
85
/// Headers are redacted by default with the character '[Redacted]' unless specified in
86
86
/// the <see cref="HttpLoggingOptions.RequestHeaders"/>.
87
- /// <p >
87
+ /// <para >
88
88
/// For example:
89
89
/// Connection: keep-alive
90
90
/// My-Custom-Request-Header: [Redacted]
91
- /// </p >
91
+ /// </para >
92
92
/// </summary>
93
93
RequestHeaders = 0x40 ,
94
94
@@ -97,13 +97,15 @@ public enum HttpLoggingFields : long
97
97
/// Response Headers are logged when the <see cref="HttpResponse.Body"/> is written to
98
98
/// or when <see cref="IHttpResponseBodyFeature.StartAsync(System.Threading.CancellationToken)"/>
99
99
/// is called.
100
+ /// <para>
100
101
/// Headers are redacted by default with the character '[Redacted]' unless specified in
101
102
/// the <see cref="HttpLoggingOptions.ResponseHeaders"/>.
102
- /// <p>
103
+ /// </para>
104
+ /// <para>
103
105
/// For example:
104
106
/// Content-Length: 16
105
107
/// My-Custom-Response-Header: [Redacted]
106
- /// </p >
108
+ /// </para >
107
109
/// </summary>
108
110
ResponseHeaders = 0x80 ,
109
111
0 commit comments