You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Gets or sets a boolean indicating if endpoints should be reconfigured when the configuration section changes.
38
-
/// Kestrel will bind and unbind to endpoints as necessary.
38
+
/// If <see langword="true" />, Kestrel will dynamically update endpoint bindings when configuration changes.
39
+
/// This will only reload endpoints defined in the "Endpoints" section of your Kestrel configuration. Endpoints defined in code will not be reloaded.
39
40
/// </summary>
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>
/// Creates a configuration loader for setting up Kestrel that takes an IConfiguration as input.
214
+
/// Creates a configuration loader for setting up Kestrel that takes an <see cref="IConfiguration"/> as input.
214
215
/// This configuration must be scoped to the configuration section for Kestrel.
216
+
/// Kestrel will dynamically update endpoint bindings when configuration changes.
217
+
/// This will only reload endpoints defined in the "Endpoints" section of your <paramref name="config"/>. Endpoints defined in code will not be reloaded.
/// Creates a configuration loader for setting up Kestrel that takes an <see cref="IConfiguration"/> as input.
231
+
/// This configuration must be scoped to the configuration section for Kestrel.
232
+
/// </summary>
233
+
/// <param name="config">The configuration section for Kestrel.</param>
234
+
/// <param name="reloadOnChange">
235
+
/// If <see langword="true" />, Kestrel will dynamically update endpoint bindings when configuration changes.
236
+
/// This will only reload endpoints defined in the "Endpoints" section of your <paramref name="config"/>. Endpoints defined in code will not be reloaded.
237
+
/// </param>
238
+
/// <returns>A <see cref="KestrelConfigurationLoader"/> for further endpoint configuration.</returns>
0 commit comments