Skip to content

Commit d4272d2

Browse files
Apply suggestions from code review
Co-Authored-By: Andrew Stanton-Nurse <[email protected]>
1 parent ba11a58 commit d4272d2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Servers/Kestrel/Core/src/KestrelConfigurationLoader.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,10 @@ internal KestrelConfigurationLoader(KestrelServerOptions options, IConfiguration
3434
public IConfiguration Configuration { get; internal set; }
3535

3636
/// <summary>
37-
/// If <see langword="true"/>, Kestrel will reload endpoints defined in the "Endpoints" section of the <see cref="Configuration"/>, if they are changed.
37+
/// Gets or sets a boolean indicating if endpoints should be reconfigured when the configuration section changes.
3838
/// Kestrel will bind and unbind to endpoints as necessary.
3939
/// </summary>
40-
/// <remarks>Code-defined endpoints defined it code will not be reloaded even if the default certificate or protocol used by endpoint changed.</remarks>
40+
/// <remarks>If set the <see langword="true" />, Kestrel will dynamically update endpoint bindings when configuration changes. This will only reload endpoints defined in the "Endpoints" section of your Kestrel configuration. Endpoints defined in code will not be reloaded.</remarks>
4141
public bool ReloadOnChange { get; } = true;
4242

4343
private ConfigurationReader ConfigurationReader { get; set; }

0 commit comments

Comments
 (0)