File tree 1 file changed +4
-3
lines changed
src/Servers/Kestrel/Core/src
1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -83,10 +83,11 @@ public class KestrelServerOptions
83
83
public bool EnableAltSvc { get ; set ; } = false ;
84
84
85
85
/// <summary>
86
- /// Gets or sets a callback that returns the <see cref="Encoding"/> to decode the value for the specified request header name.
86
+ /// Gets or sets a callback that returns the <see cref="Encoding"/> to decode the value for the specified request header name,
87
+ /// or <see langword="null"/> to use the default <see cref="UTF8Encoding"/>.
87
88
/// </summary>
88
89
/// <remarks>
89
- /// Defaults to returning a <see cref="UTF8Encoding "/> for all headers.
90
+ /// Defaults to returning a <see langword="null "/> for all headers.
90
91
/// </remarks>
91
92
public Func < string , Encoding ? > RequestHeaderEncodingSelector { get ; set ; } = DefaultRequestHeaderEncodingSelector ;
92
93
@@ -103,7 +104,7 @@ public class KestrelServerOptions
103
104
104
105
/// <summary>
105
106
/// Provides a configuration source where endpoints will be loaded from on server start.
106
- /// The default is null.
107
+ /// The default is <see langword=" null"/> .
107
108
/// </summary>
108
109
public KestrelConfigurationLoader ? ConfigurationLoader { get ; set ; }
109
110
You can’t perform that action at this time.
0 commit comments