Feature Flag Decision
IsFeatureOn
// Determines the user's state for the Feature Flag with Feature Key 42.
// Returns false (off state) if a decision cannot be made.
bool isFeatureOn = hackle.IsFeatureOn(42);
if (isFeatureOn) {
// ON feature
} else {
// OFF feature
}FeatureFlagDetail
Decision Reason
Description
Distribution Result
Feature Flag Parameters
GetString
GetInt
GetDouble
GetLong
GetBoolean
Last updated