Class Feature
- Namespace
- PolarStudio
- Assembly
- PolarStudio.dll
This class contains the value of a feature. Features can be numeric (int) or non-numeric (meaning boolean)
public class Feature
- Inheritance
-
Feature
- Inherited Members
- Extension Methods
Properties
Enabled
This property gets/sets if the feature is enabled or not. Does not apply to features with IsNumericFeature.
public bool Enabled { get; set; }
Property Value
IsNumericFeature
Returns True if this is a numeric feature.
public bool IsNumericFeature { get; }
Property Value
Name
Returns the name of the feature.
public string Name { get; }
Property Value
Value
This property gets sets the value for this feature. Non-numeric (thus boolean) features will have values 0 or 1.
public int Value { get; set; }