Class EnumDataContainer
Provides wrapper for any Enum object for usage in the macro engine. Uses reflection to extract fields of the enum.
public class EnumDataContainer : IDataContainer, ISimpleDataContainer
- Inheritance
-
objectEnumDataContainer
- Implements
- Extension Methods
Constructors
EnumDataContainer(Type)
Creates new instance of enum container.
public EnumDataContainer(Type enumType)
Parameters
enumType
TypeType of the enum
Fields
mColumnNames
Column names (enum items).
protected Lazy<List<string>> mColumnNames
Field Value
- Lazy<List<string>>
mEnumType
Type of the enum.
protected Type mEnumType
Field Value
- Type
Properties
ColumnNames
Returns list of enumeration items.
public List<string> ColumnNames { get; }
Property Value
- List<string>
EnumType
Element type.
public Type EnumType { get; }
Property Value
- Type
this[string]
Returns the value of given enumeration item.
public object this[string columnName] { get; set; }
Parameters
columnName
stringName of the enumeration item
Property Value
- object
Methods
ContainsColumn(string)
Returns true if given name is within the enumeration items.
public bool ContainsColumn(string columnName)
Parameters
columnName
stringName of the item
Returns
- bool
GetValue(string)
Returns the value of given enumeration item.
public object GetValue(string columnName)
Parameters
columnName
stringEnumeration item name
Returns
- object
SetValue(string, object)
Not implemented, throws an exception.
public bool SetValue(string columnName, object value)
Parameters
columnName
stringNot supported
value
objectNot supported
Returns
- bool
TryGetValue(string, out object)
Returns the value of given enumeration item.
public bool TryGetValue(string columnName, out object value)
Parameters
columnName
stringName of the item
value
objectValue
Returns
- bool