enum
Creates an enum argument allowing all values of the specified enum type with name as the parameter name.
Enum values of T must have names that are distinct when case is ignored.
Author
Cypher121
Creates a string argument allowing only values specified in values with name as the parameter name.
All elements of values must be distinct when case is ignored.
Author
Cypher121
Creates an enum argument allowing only values specified in values with name as the parameter name.
All elements of values must have names that are distinct when case is ignored.
Author
Cypher121
Creates an enum argument allowing values specified by keys of values with name as the parameter name.
When read, the argument will convert the provided string to its respective value in values.
Keys of values must be distinct when case is ignored.
Author
Cypher121