Skip to content

Commit 59b310c

Browse files
authored
Broken link removed
1 parent 2734721 commit 59b310c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/azure-app-configuration/use-feature-flags-dotnet-core.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ By convention, the `FeatureManagement` section of this JSON document is used for
217217

218218
## Use dependency injection to access IFeatureManager
219219

220-
For some operations, such as manually checking feature flag values, you need to get an instance of [IFeatureManager](/dotnet/api/microsoft.featuremanagement.ifeaturemanager?preserve-view=true&view=azure-dotnet-preview). In ASP.NET Core MVC, you can access the feature manager `IFeatureManager` through dependency injection. In the following example, an argument of type `IFeatureManager` is added to the signature of the constructor for a controller. The runtime automatically resolves the reference and provides an of the interface when calling the constructor. If you're using an application template in which the controller already has one or more dependency injection arguments in the constructor, such as `ILogger`, you can just add `IFeatureManager` as an additional argument:
220+
For some operations, such as manually checking feature flag values, you need to get an instance of IFeatureManager. In ASP.NET Core MVC, you can access the feature manager `IFeatureManager` through dependency injection. In the following example, an argument of type `IFeatureManager` is added to the signature of the constructor for a controller. The runtime automatically resolves the reference and provides an of the interface when calling the constructor. If you're using an application template in which the controller already has one or more dependency injection arguments in the constructor, such as `ILogger`, you can just add `IFeatureManager` as an additional argument:
221221

222222
### [.NET 5.x](#tab/core5x)
223223

@@ -397,4 +397,4 @@ In this tutorial, you learned how to implement feature flags in your ASP.NET Cor
397397

398398
* [ASP.NET Core feature flag sample code](./quickstart-feature-flag-aspnet-core.md)
399399
* [Microsoft.FeatureManagement documentation](/dotnet/api/microsoft.featuremanagement)
400-
* [Manage feature flags](./manage-feature-flags.md)
400+
* [Manage feature flags](./manage-feature-flags.md)

0 commit comments

Comments
 (0)