Table of Contents

Class DataTableContainer

Namespace
CMS.Base
Assembly
CMS.Base.dll

Object encapsulating DataTable objects to be accessible via macro engine.

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

Constructors

DataTableContainer(DataTable)

Creates new instance of DataTableContainer.

public DataTableContainer(DataTable dt)

Parameters

dt DataTable

DataTable object to be encapsulated

Properties

ColumnNames

Column names.

public List<string> ColumnNames { get; }

Property Value

List<string>

DataTable

Gets the encapsulated DataTable.

public DataTable DataTable { get; }

Property Value

DataTable

this[string]

Gets the value of the column, setter is not implemented.

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 or sets the value of the column.

public object GetValue(string columnName)

Parameters

columnName string

Column name

Returns

object

SetValue(string, object)

Not implemented.

public bool SetValue(string columnName, object value)

Parameters

columnName string

Column name

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)