Created
January 19, 2020 06:30
-
-
Save kasunkv/ebad082e0c7b554881f01a5c10a3587c to your computer and use it in GitHub Desktop.
Register Microsoft.TimeWindow feature filter in Startup.cs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using Microsoft.FeatureManagement; | |
| using Microsoft.FeatureManagement.FeatureFilters; | |
| namespace MusicStore.Web | |
| { | |
| public class Startup | |
| { | |
| ... | |
| public void ConfigureServices(IServiceCollection services) | |
| { | |
| ... | |
| // Configure Feature Management | |
| services | |
| .AddFeatureManagement() | |
| .AddFeatureFilter<TimeWindowFilter>(); // register PercentageFilter | |
| ... | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment