Table of Contents

Class DataRowContainer

Namespace
CMS.Base
Assembly
CMS.Base.dll

Object encapsulating DataRow objects to be accessible via macro engine.

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

Constructors

DataRowContainer(DataRow)

Creates new instance of DataRowContainer.

public DataRowContainer(DataRow dr)

Parameters

dr DataRow

DataRow object to be encapsulated

DataRowContainer(DataRowView)

Creates new instance of DataRowContainer from DataRowView.

public DataRowContainer(DataRowView dr)

Parameters

dr DataRowView

DataRowView to be encapsulated

Properties

AddTableProperty

If true, Table property of DataRow will be included in the supported columns of this container.

public bool AddTableProperty { get; set; }

Property Value

bool

ColumnNames

Column names.

public List<string> ColumnNames { get; }

Property Value

List<string>

DataRow

Gets the encapsulated DataRow.

public DataRow DataRow { get; }

Property Value

DataRow

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 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)