Class DictionaryContainer
- Namespace
- CMS.MacroEngine
- Assembly
- CMS.MacroEngine.dll
Container to wrap the IDictionary[string, object] structure
public class DictionaryContainer : IDataContainer, ISimpleDataContainer
- Inheritance
-
objectDictionaryContainer
- 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
stringColumn name
Property Value
- object
Methods
ContainsColumn(string)
Returns true if the object contains specified column.
public bool ContainsColumn(string columnName)
Parameters
columnName
stringColumn name
Returns
- bool
GetValue(string)
Gets the value from QueryString.
public object GetValue(string key)
Parameters
key
stringQueryString key
Returns
- object
SetValue(string, object)
Not implemented.
public bool SetValue(string key, object value)
Parameters
key
stringQueryString key
value
objectNew value
Returns
- bool
TryGetValue(string, out object)
Returns value of column.
public bool TryGetValue(string columnName, out object value)
Parameters
columnName
stringColumn name
value
objectReturns the value
Returns
- bool
Returns true if the operation was successful (the value was present)