Skip to content

Commit ac70a93

Browse files
update
1 parent 0eb4cd0 commit ac70a93

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

articles/azure-app-configuration/reference-dotnet-provider.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ ms.date: 04/29/2025
1313
#Customer intent: I want to learn how to use the Azure App Configuration .NET configuration provider library.
1414
---
1515

16-
# .NET Configuration Provider
16+
# .NET configuration provider
1717

1818
[![Microsoft.Extensions.Configuration.AzureAppConfiguration](https://img.shields.io/nuget/v/Microsoft.Extensions.Configuration.AzureAppConfiguration?label=Microsoft.Extensions.Configuration.AzureAppConfiguration)](https://www.nuget.org/packages/Microsoft.Extensions.Configuration.AzureAppConfiguration)
1919

@@ -287,7 +287,7 @@ builder.Services.AddAzureAppConfiguration();
287287

288288
`builder.Services.AddAzureAppConfiguration()` adds the `IConfigurationRefreshProvider` service to the DI container, which gives you access to the refreshers of all Azure App Configuration sources in the application's configuration.
289289

290-
#### ASP.NET Core applications
290+
##### ASP.NET Core applications
291291

292292
For ASP.NET Core applications, you can use the `Microsoft.Azure.AppConfiguration.AspNetCore` package to achieve [request-driven configuration refresh](./enable-dynamic-configuration-aspnet-core.md#request-driven-configuration-refresh) with a built-in middleware.
293293

@@ -315,7 +315,7 @@ app.UseRouting();
315315

316316
The `AzureAppConfigurationRefreshMiddleware` automatically checks for configuration changes at the configured refresh interval. This approach is efficient as it only refreshes when both conditions are met: an HTTP request is received and the refresh interval has elapsed.
317317

318-
#### Background services
318+
##### Background services
319319

320320
For background services, you can inject the `IConfigurationRefresherProvider` service and manually refresh each of the registered refreshers.
321321

@@ -583,8 +583,8 @@ Azure App Configuration enables you to configure secret refresh intervals indepe
583583

584584
To ensure your application always uses the most current secret values, configure the `SetSecretRefreshInterval` method. This forces the provider to retrieve fresh secret values from Key Vault when:
585585

586-
1. Your application calls `IConfigurationRefresher.TryRefreshAsync`
587-
2. The configured refresh interval for the secret has elapsed
586+
- Your application calls `IConfigurationRefresher.TryRefreshAsync`
587+
- The configured refresh interval for the secret has elapsed
588588

589589
This mechanism works even when no changes are detected in your App Configuration store, ensuring your application stays in sync with rotated secrets.
590590

articles/azure-app-configuration/reference-javascript-provider.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ ms.date: 02/02/2025
1313
#Customer intent: I want to learn how to use Azure App Configuration JavaScript client library.
1414
---
1515

16-
# JavaScript Configuration Provider
16+
# JavaScript configuration provider
1717

1818
[![configuration-provider-npm-package](https://img.shields.io/npm/v/@azure/app-configuration-provider?label=@azure/app-configuration-provider)](https://www.npmjs.com/package/@azure/app-configuration-provider)
1919

0 commit comments

Comments
 (0)