Custom Context
Providing a Context For Feature Evaluation
MyAppContext context = new MyAppContext
{
AccountId = current.Id;
}
if (await featureManager.IsEnabledAsync(feature, context))
{
...
}Last updated
Providing a Context For Feature Evaluation
MyAppContext context = new MyAppContext
{
AccountId = current.Id;
}
if (await featureManager.IsEnabledAsync(feature, context))
{
...
}Last updated