FeatureFlagFields Enum

Definition

Fields to retrieve from a FeatureFlag.

This enumeration supports a bitwise combination of its member values.

[System.Flags]
public enum FeatureFlagFields
[<System.Flags>]
type FeatureFlagFields = 
Public Enum FeatureFlagFields
Inheritance
FeatureFlagFields
Attributes

Fields

Name Value Description
Name 1

The name of the feature flag.

Enabled 2

A value indicating whether the feature flag is enabled.

Label 4

A label used to group feature flags.

Description 8

The description of the feature flag.

Conditions 16

The conditions that determine when the feature flag should be enabled.

Variants 32

The variants defined for the feature flag.

Allocation 64

The allocation that determines how variants are assigned.

Telemetry 128

The telemetry configuration of the feature flag.

Tags 256

A dictionary of tags that can help identify what a feature flag may be applicable for.

LastModified 512

The last time a modifying operation was performed on the given feature flag.

Etag 1024

An ETag indicating the version of a feature flag within a configuration store.

All 4294967295

Allows for all the properties of a FeatureFlag to be retrieved.

Applies to