Table of Contents

Class DictionaryContainer

Namespace
CMS.MacroEngine
Assembly
CMS.MacroEngine.dll

Container to wrap the IDictionary[string, object] structure

public class DictionaryContainer : IDataContainer, ISimpleDataContainer
Inheritance
object
DictionaryContainer
Implements
Extension Methods

Constructors

DictionaryContainer(IDictionary<string, object>)

Constructor

public DictionaryContainer(IDictionary<string, object> dict)

Parameters

dict IDictionary<string, object>

Wrapped dictionary

Properties

ColumnNames

Column names.

public List<string> ColumnNames { get; }

Property Value

List<string>

this[string]

Gets or sets the value of the column.

public object this[string columnName] { get; set; }

Parameters

columnName string

Column name

Property Value

object

Methods

ContainsColumn(string)

Returns true if the object contains specified column.

public bool ContainsColumn(string columnName)

Parameters

columnName string

Column name

Returns

bool

GetValue(string)

Gets the value from QueryString.

public object GetValue(string key)

Parameters

key string

QueryString key

Returns

object

SetValue(string, object)

Not implemented.

public bool SetValue(string key, object value)

Parameters

key string

QueryString key

value object

New value

Returns

bool

TryGetValue(string, out object)

Returns value of column.

public bool TryGetValue(string columnName, out object value)

Parameters

columnName string

Column name

value object

Returns the value

Returns

bool

Returns true if the operation was successful (the value was present)