Table of Contents

Class EnumDataContainer

Namespace
CMS.Base
Assembly
CMS.Base.dll

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
object
EnumDataContainer
Implements
Extension Methods

Constructors

EnumDataContainer(Type)

Creates new instance of enum container.

public EnumDataContainer(Type enumType)

Parameters

enumType Type

Type 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 string

Name 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 string

Name of the item

Returns

bool

GetValue(string)

Returns the value of given enumeration item.

public object GetValue(string columnName)

Parameters

columnName string

Enumeration item name

Returns

object

SetValue(string, object)

Not implemented, throws an exception.

public bool SetValue(string columnName, object value)

Parameters

columnName string

Not supported

value object

Not supported

Returns

bool

TryGetValue(string, out object)

Returns the value of given enumeration item.

public bool TryGetValue(string columnName, out object value)

Parameters

columnName string

Name of the item

value object

Value

Returns

bool