Skip to content

Commit b61dfc6

Browse files
committed
Acrolinx update
1 parent 7c07c71 commit b61dfc6

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

articles/azure-app-configuration/quickstart-feature-flag-azure-functions-csharp.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ ms.author: zhenlwa
1212
---
1313
# Quickstart: Add feature flags to an Azure Functions app
1414

15-
In this quickstart, you create an Azure Functions C# code project and use feature flags in it. You use the feature management from Azure App Configuration to centrally store all your feature flags and control their states.
15+
In this quickstart, you create an Azure Functions app and use feature flags in it. You use the feature management from Azure App Configuration to centrally store all your feature flags and control their states.
1616

1717
## Prerequisites
1818

@@ -60,7 +60,7 @@ You can connect to your App Configuration store using Microsoft Entra ID (recomm
6060

6161
---
6262

63-
1. Open *Program.cs* and update the code as follows. You add Azure App Configuration as an additional configuration source by calling the `AddAzureAppConfiguration` method.
63+
1. Open *Program.cs* and update the code as follows. You add Azure App Configuration as an extra configuration source by calling the `AddAzureAppConfiguration` method.
6464

6565
### [Microsoft Entra ID (recommended)](#tab/entra-id)
6666

@@ -112,7 +112,6 @@ You can connect to your App Configuration store using Microsoft Entra ID (recomm
112112
.UseFeatureFlags();
113113
});
114114
```
115-
116115
---
117116

118117
The `UseFeatureFlags()` method instructs the provider to load feature flags. By default, all feature flags without labels are loaded and refreshed every 30 seconds. The selection and refresh behavior of feature flags are configured independently from other configuration key-values. You can customize these behaviors by passing a `FeatureFlagOptions` action to the `UseFeatureFlags` method. Use `FeatureFlagOptions.Select` to specify the keys and labels of feature flags to load, and use `FeatureFlagOptions.SetRefreshInterval` to override the default refresh interval.
@@ -177,7 +176,6 @@ You can connect to your App Configuration store using Microsoft Entra ID (recomm
177176
? $"The Feature Flag '{featureName}' is turned ON!"
178177
: $"The Feature Flag '{featureName}' is turned OFF");
179178
}
180-
181179
```
182180

183181
## Test the function locally
@@ -239,7 +237,7 @@ You can connect to your App Configuration store using Microsoft Entra ID (recomm
239237

240238
1. In the Azure portal, navigate to your App Configuration store. Under **Operations**, select **Feature manager**, locate the *Beta* feature flag, and set the **Enabled** toggle to **On**.
241239

242-
1. Refresh the browser a few times. When the refresh interval time window passes, the page will change to indicate the feature flag *Beta* is turned on, as shown in the image below.
240+
1. Refresh the browser a few times. When the refresh interval time window passes, the page changes to indicate the feature flag *Beta* is turned on, as shown in the image.
243241

244242
![Quickstart Function feature flag enabled](./media/quickstarts/functions-launch-ff-enabled.png)
245243

0 commit comments

Comments
 (0)