You work as a Cloud Configuration Engineer for MDFT Pro, a well-known training agency that delivers certification courses to students worldwide. Claire, the Application Architecture Lead, has tasked you with completing the Azure App Configuration integration for the Student Learning Portal. You’ve created an App Configuration store named AppFeatureFlagStore to centrally manage feature flags including the “Export” feature that controls data export functionality. The application code is ready to connect to App Configuration using the AddAzureAppConfiguration method, but you need to specify the correct endpoint URL in the application’s configuration settings. The endpoint setting tells the application where to connect to retrieve feature flags and other configuration data.
| Property | Value |
|---|---|
| Key | Export |
| Label | Export |
| State | Off |
| Description | Ability to export data |
| Last modified | 11/30/2025 16:50:10 |
The view markup uses the feature tag helper:
<feature name="export">
<li class="nav-item">
<a class="nav-link text-dark" asp-area="" asp-controller="home" asp-action="export">Export Data</a>
</li>
</feature>
Which AppConfig endpoint setting should you configure in the application?
Choose the correct answer from the options below.
Explanations for each answer: