You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This library seem to be a standard for today's feature toggles in .NET world and I was surprised to find out it's missing parameterized features (e.g. I want to enable certain feature for some customers and disable for others). At least I couldn't find a way to easily implement that even with extensibility features. It would look weird to pass customerId in featureToggle constructor...
What would be nice to have is interface like
public interface IFeatureToggle<TArg>
{
bool IsEnabled(TArg @for);
}
The text was updated successfully, but these errors were encountered:
This library seem to be a standard for today's feature toggles in .NET world and I was surprised to find out it's missing parameterized features (e.g. I want to enable certain feature for some customers and disable for others). At least I couldn't find a way to easily implement that even with extensibility features. It would look weird to pass customerId in featureToggle constructor...
What would be nice to have is interface like
The text was updated successfully, but these errors were encountered: