Skip to content

Commit 80b1f35

Browse files
do not mention percentage and contextual targeting filters
1 parent aff4852 commit 80b1f35

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

articles/azure-app-configuration/howto-feature-filters-aspnet-core.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,8 @@ In contrast, a _conditional feature flag_ allows the feature flag to be enabled
2020

2121
The `Microsoft.FeatureManagement` library includes built-in feature filters:
2222

23-
- `PercentageFilter` enables the feature flag based on a percentage.
2423
- `TimeWindowFilter` enables the feature flag during a specified window of time.
25-
- `ContextualTargetingFilter` and `TargetingFilter` enable the feature flag for specified users and groups.
24+
- `TargetingFilter` enables the feature flag for specified users and groups.
2625

2726
You can also create your own feature filter that implements the `Microsoft.FeatureManagement.IFeatureFilter` interface. For more information, see [Implementing a Feature Filter](https://github.com/microsoft/FeatureManagement-Dotnet#implementing-a-feature-filter).
2827

@@ -33,7 +32,7 @@ You can also create your own feature filter that implements the `Microsoft.Featu
3332

3433
## Set up feature management
3534

36-
Since `Microsoft.FeatureManagement` 3.0.0, all built-in filters, except for the `TargetingFilter`, are added automatically when feature management is registered. For more information on using `TargetingFilter`, see [Enable staged rollout of features for targeted audiences](./howto-targetingfilter-aspnet-core.md).
35+
Since `Microsoft.FeatureManagement` 3.0.0, built-in filters, except for the `TargetingFilter`, are added automatically when feature management is registered. For more information on using `TargetingFilter`, see [Enable staged rollout of features for targeted audiences](./howto-targetingfilter-aspnet-core.md).
3736

3837
```csharp
3938
services.AddFeatureManagement();

0 commit comments

Comments
 (0)