Table of Contents

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

bool

IsNumericFeature

Returns True if this is a numeric feature.

public bool IsNumericFeature { get; }

Property Value

bool

Name

Returns the name of the feature.

public string Name { get; }

Property Value

string

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; }

Property Value

int