Skip to content

FeatureFlags

Enum sealedpublic
Feature flags that can be independently enabled for the application.
Namespace SampleApi
Assembly SampleApi
Package v1.0.0.0
public sealed enum FeatureFlags
This enum uses the FlagsAttribute to allow bitwise combination of values. Use AllFeatures as a convenience mask to enable every flag at once.

[Flags] Values can be combined with bitwise OR.

NameValueDescription
None0No features enabled.
BetaFeatures10x1Enables access to beta features.
DarkMode20x2Enables the dark mode user interface.
Analytics40x4Enables analytics and telemetry collection.
Notifications80x8Enables push notifications.
AllFeatures150xFConvenience flag that enables all features.