Interface ISelectionOptionDescriptor
An option descriptor for options with type Selection
Describes the available options by introspecting the backing Enum
Namespace: Snowflake.Configuration
Assembly: Snowflake.Framework.Primitives.dll
Syntax
public interface ISelectionOptionDescriptor
Properties
DisplayName
Gets the display name of this selection option.
Declaration
string DisplayName { get; }
Property Value
Type | Description |
---|---|
System. |
EnumName
Gets the name of the enumeration value this selection option is backed by.
Declaration
string EnumName { get; }
Property Value
Type | Description |
---|---|
System. |
EnumType
Gets the CLR enumeration type this selection value is of.
Declaration
Type EnumType { get; }
Property Value
Type | Description |
---|---|
System. |
NumericValue
Gets the numeric value that represents this selection in the context of the enumeration type.
Declaration
int NumericValue { get; }
Property Value
Type | Description |
---|---|
System. |
Private
Gets a value indicating whether whether or not this selection is to be shown to the user
Declaration
bool Private { get; }
Property Value
Type | Description |
---|---|
System. |
SerializeAs
Gets the value this selection option appears in the serialized configuration.
Declaration
string SerializeAs { get; }
Property Value
Type | Description |
---|---|
System. |